diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2024-09-17 13:36:45 +0100 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2024-09-17 13:36:45 +0100 |
| commit | 2163e0a01f934692c8967a11eb9828fd70f7d03d (patch) | |
| tree | 64f2d3eae009e43a7d9395bd6d1f34011db9ade5 /src/bin/git_remote_nostr/push.rs | |
| parent | 31f8cb32c6b6cec266f6f97ceefe666addc5069d (diff) | |
fix(remote): push reporting copy
ensure commit id from and two are the correct way around
Diffstat (limited to 'src/bin/git_remote_nostr/push.rs')
| -rw-r--r-- | src/bin/git_remote_nostr/push.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/git_remote_nostr/push.rs b/src/bin/git_remote_nostr/push.rs index 9dbec0d..b038d19 100644 --- a/src/bin/git_remote_nostr/push.rs +++ b/src/bin/git_remote_nostr/push.rs | |||
| @@ -436,8 +436,8 @@ fn push_to_remote_url( | |||
| 436 | for update in updates { | 436 | for update in updates { |
| 437 | let msg = format!( | 437 | let msg = format!( |
| 438 | "push: {}..{} {} -> {}", | 438 | "push: {}..{} {} -> {}", |
| 439 | oid_to_shorthand_string(update.dst()).unwrap(), | ||
| 440 | oid_to_shorthand_string(update.src()).unwrap(), | 439 | oid_to_shorthand_string(update.src()).unwrap(), |
| 440 | oid_to_shorthand_string(update.dst()).unwrap(), | ||
| 441 | update | 441 | update |
| 442 | .src_refname() | 442 | .src_refname() |
| 443 | .unwrap_or("") | 443 | .unwrap_or("") |