mirror of
https://github.com/martinvonz/jj.git
synced 2025-01-12 07:14:38 +00:00
cli: make jj git push -r
just warn if no branches targeted
If there are branches in the revset that don't need to be pushed because they already match the destination, we currently just print `Nothing changed.` It seems consistent with that to also treat it as success if there are no branches in the specified set to start with. This patch makes the command print a warning in that case instead.
This commit is contained in:
parent
d9bd578662
commit
14d35b0198
2 changed files with 9 additions and 3 deletions
|
@ -791,7 +791,10 @@ fn cmd_git_push(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if !args.revisions.is_empty() && branches_targeted.is_empty() {
|
if !args.revisions.is_empty() && branches_targeted.is_empty() {
|
||||||
return Err(user_error("No branches point to the specified revisions."));
|
writeln!(
|
||||||
|
ui.warning(),
|
||||||
|
"No branches point to the specified revisions."
|
||||||
|
)?;
|
||||||
}
|
}
|
||||||
|
|
||||||
tx_description = format!(
|
tx_description = format!(
|
||||||
|
|
|
@ -341,9 +341,12 @@ fn test_git_push_revisions() {
|
||||||
Error: Empty revision set
|
Error: Empty revision set
|
||||||
"###);
|
"###);
|
||||||
// Push a revision with no branches
|
// Push a revision with no branches
|
||||||
let stderr = test_env.jj_cmd_failure(&workspace_root, &["git", "push", "-r=@--"]);
|
let (stdout, stderr) = test_env.jj_cmd_ok(&workspace_root, &["git", "push", "-r=@--"]);
|
||||||
|
insta::assert_snapshot!(stdout, @r###"
|
||||||
|
Nothing changed.
|
||||||
|
"###);
|
||||||
insta::assert_snapshot!(stderr, @r###"
|
insta::assert_snapshot!(stderr, @r###"
|
||||||
Error: No branches point to the specified revisions.
|
No branches point to the specified revisions.
|
||||||
"###);
|
"###);
|
||||||
// Push a revision with a single branch
|
// Push a revision with a single branch
|
||||||
let stdout = test_env.jj_cmd_success(&workspace_root, &["git", "push", "-r=@-", "--dry-run"]);
|
let stdout = test_env.jj_cmd_success(&workspace_root, &["git", "push", "-r=@-", "--dry-run"]);
|
||||||
|
|
Loading…
Reference in a new issue