mirror of
https://github.com/martinvonz/jj.git
synced 2024-12-26 14:00:51 +00:00
cleanup: fix formatting of commands.rs
This commit is contained in:
parent
b4d0549146
commit
c310477765
1 changed files with 8 additions and 2 deletions
|
@ -1445,7 +1445,10 @@ fn cmd_status(
|
|||
ui.stdout_formatter().remove_label()?;
|
||||
writeln!(ui)?;
|
||||
}
|
||||
writeln!(ui, " Use `jj branches` to see details. Use `jj branch <name> -r <rev>` to resolve.")?;
|
||||
writeln!(
|
||||
ui,
|
||||
" Use `jj branches` to see details. Use `jj branch <name> -r <rev>` to resolve."
|
||||
)?;
|
||||
}
|
||||
if !conflicted_remote_branches.is_empty() {
|
||||
ui.stdout_formatter().add_label("conflict".to_string())?;
|
||||
|
@ -1458,7 +1461,10 @@ fn cmd_status(
|
|||
ui.stdout_formatter().remove_label()?;
|
||||
writeln!(ui)?;
|
||||
}
|
||||
writeln!(ui, " Use `jj branches` to see details. Use `jj git pull` to resolve.")?;
|
||||
writeln!(
|
||||
ui,
|
||||
" Use `jj branches` to see details. Use `jj git pull` to resolve."
|
||||
)?;
|
||||
}
|
||||
let summary = commit.parents()[0]
|
||||
.tree()
|
||||
|
|
Loading…
Reference in a new issue