Skip to content

Commit dc55936

Browse files
committed
make 'pull' output of previous upstream base prettier
1 parent 8675869 commit dc55936

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sync.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ impl GitSync {
8080

8181
let orig_head = get_current_head_sha(self.verbose)?;
8282
println!(
83-
"previous upstream base: {:?}",
84-
self.context.last_upstream_sha
83+
"previous upstream base: {}",
84+
self.context.last_upstream_sha.as_deref().unwrap_or("<none>"),
8585
);
8686
println!("new upstream base: {upstream_sha}");
8787
println!("original local HEAD: {orig_head}");

0 commit comments

Comments
 (0)