Skip to content

Commit

Permalink
fix(remote): push reporting copy
Browse files Browse the repository at this point in the history
ensure commit id from and two are the correct way around
  • Loading branch information
DanConwayDev committed Sep 17, 2024
1 parent 31f8cb3 commit 2163e0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/git_remote_nostr/push.rs
Original file line number Diff line number Diff line change
Expand Up @@ -436,8 +436,8 @@ fn push_to_remote_url(
for update in updates {
let msg = format!(
"push: {}..{} {} -> {}",
oid_to_shorthand_string(update.dst()).unwrap(),
oid_to_shorthand_string(update.src()).unwrap(),
oid_to_shorthand_string(update.dst()).unwrap(),
update
.src_refname()
.unwrap_or("")
Expand Down

0 comments on commit 2163e0a

Please sign in to comment.