We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8675869 commit dc55936Copy full SHA for dc55936
src/sync.rs
@@ -80,8 +80,8 @@ impl GitSync {
80
81
let orig_head = get_current_head_sha(self.verbose)?;
82
println!(
83
- "previous upstream base: {:?}",
84
- self.context.last_upstream_sha
+ "previous upstream base: {}",
+ self.context.last_upstream_sha.as_deref().unwrap_or("<none>"),
85
);
86
println!("new upstream base: {upstream_sha}");
87
println!("original local HEAD: {orig_head}");
0 commit comments