ok/jj
1
0
Fork 0
forked from mirrors/jj

Log names of created branch for git push --change.

This commit is contained in:
Tal Pressman 2022-05-25 21:02:55 +09:00 committed by Martin von Zweigbergk
parent aedc23176f
commit 9766e80438

View file

@ -4863,6 +4863,11 @@ fn cmd_git_push(
if let Some(update) =
branch_updates_for_push(tx.mut_repo().as_repo_ref(), &args.remote, &branch_name)?
{
writeln!(
ui,
"Creating branch {} for revision {}",
branch_name, change_str
)?;
branch_updates.insert(branch_name.clone(), update);
} else {
writeln!(