-
Notifications
You must be signed in to change notification settings - Fork 344
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refuse to split an empty commit with
jj split
.
Rationale: The user may be confused by the empty diff in the diff editor tool if they accidentally run `jj split` on a wrong (empty) commit.
- Loading branch information
1 parent
3a0929b
commit 7ac3292
Showing
7 changed files
with
65 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -121,6 +121,9 @@ fn test_rewrite_immutable_commands() { | |
test_env.jj_cmd_ok(&repo_path, &["new", "@-", "-m=c"]); | ||
std::fs::write(repo_path.join("file"), "c").unwrap(); | ||
test_env.jj_cmd_ok(&repo_path, &["new", "all:visible_heads()", "-m=merge"]); | ||
// Create another file to make sure the merge commit isn't empty (to satisfy `jj | ||
// split`) and still has a conflict (to satisfy `jj resolve`). | ||
std::fs::write(repo_path.join("file2"), "merged").unwrap(); | ||
test_env.jj_cmd_ok(&repo_path, &["branch", "create", "main"]); | ||
test_env.jj_cmd_ok(&repo_path, &["new", "description(b)"]); | ||
test_env.add_config(r#"revset-aliases."immutable_heads()" = "main""#); | ||
|
@@ -131,8 +134,8 @@ fn test_rewrite_immutable_commands() { | |
insta::assert_snapshot!(stdout, @r###" | ||
@ yqosqzyt [email protected] 2001-02-03 08:05:13 3f89addf | ||
│ (empty) (no description set) | ||
│ ◉ mzvwutvl [email protected] 2001-02-03 08:05:11 main 406c181c conflict | ||
╭─┤ (empty) merge | ||
│ ◉ mzvwutvl [email protected] 2001-02-03 08:05:12 main 3e025082 conflict | ||
╭─┤ merge | ||
│ │ | ||
│ ~ | ||
│ | ||
|
@@ -144,71 +147,71 @@ fn test_rewrite_immutable_commands() { | |
// abandon | ||
let stderr = test_env.jj_cmd_failure(&repo_path, &["abandon", "main"]); | ||
insta::assert_snapshot!(stderr, @r###" | ||
Error: Commit 406c181c04d8 is immutable | ||
Error: Commit 3e0250828ca5 is immutable | ||
Hint: Pass `--ignore-immutable` or configure the set of immutable commits via `revset-aliases.immutable_heads()`. | ||
"###); | ||
// chmod | ||
let stderr = test_env.jj_cmd_failure(&repo_path, &["chmod", "-r=main", "x", "file"]); | ||
insta::assert_snapshot!(stderr, @r###" | ||
Error: Commit 406c181c04d8 is immutable | ||
Error: Commit 3e0250828ca5 is immutable | ||
Hint: Pass `--ignore-immutable` or configure the set of immutable commits via `revset-aliases.immutable_heads()`. | ||
"###); | ||
// describe | ||
let stderr = test_env.jj_cmd_failure(&repo_path, &["describe", "main"]); | ||
insta::assert_snapshot!(stderr, @r###" | ||
Error: Commit 406c181c04d8 is immutable | ||
Error: Commit 3e0250828ca5 is immutable | ||
Hint: Pass `--ignore-immutable` or configure the set of immutable commits via `revset-aliases.immutable_heads()`. | ||
"###); | ||
// diffedit | ||
let stderr = test_env.jj_cmd_failure(&repo_path, &["diffedit", "-r=main"]); | ||
insta::assert_snapshot!(stderr, @r###" | ||
Error: Commit 406c181c04d8 is immutable | ||
Error: Commit 3e0250828ca5 is immutable | ||
Hint: Pass `--ignore-immutable` or configure the set of immutable commits via `revset-aliases.immutable_heads()`. | ||
"###); | ||
// edit | ||
let stderr = test_env.jj_cmd_failure(&repo_path, &["edit", "main"]); | ||
insta::assert_snapshot!(stderr, @r###" | ||
Error: Commit 406c181c04d8 is immutable | ||
Error: Commit 3e0250828ca5 is immutable | ||
Hint: Pass `--ignore-immutable` or configure the set of immutable commits via `revset-aliases.immutable_heads()`. | ||
"###); | ||
// move --from | ||
let stderr = test_env.jj_cmd_failure(&repo_path, &["move", "--from=main"]); | ||
insta::assert_snapshot!(stderr, @r###" | ||
Warning: `jj move` is deprecated; use `jj squash` instead, which is equivalent | ||
Warning: `jj move` will be removed in a future version, and this will be a hard error | ||
Error: Commit 406c181c04d8 is immutable | ||
Error: Commit 3e0250828ca5 is immutable | ||
Hint: Pass `--ignore-immutable` or configure the set of immutable commits via `revset-aliases.immutable_heads()`. | ||
"###); | ||
// move --to | ||
let stderr = test_env.jj_cmd_failure(&repo_path, &["move", "--to=main"]); | ||
insta::assert_snapshot!(stderr, @r###" | ||
Warning: `jj move` is deprecated; use `jj squash` instead, which is equivalent | ||
Warning: `jj move` will be removed in a future version, and this will be a hard error | ||
Error: Commit 406c181c04d8 is immutable | ||
Error: Commit 3e0250828ca5 is immutable | ||
Hint: Pass `--ignore-immutable` or configure the set of immutable commits via `revset-aliases.immutable_heads()`. | ||
"###); | ||
// new --insert-before | ||
let stderr = test_env.jj_cmd_failure(&repo_path, &["new", "--insert-before", "main"]); | ||
insta::assert_snapshot!(stderr, @r###" | ||
Error: Commit 406c181c04d8 is immutable | ||
Error: Commit 3e0250828ca5 is immutable | ||
Hint: Pass `--ignore-immutable` or configure the set of immutable commits via `revset-aliases.immutable_heads()`. | ||
"###); | ||
// new --insert-after parent_of_main | ||
let stderr = test_env.jj_cmd_failure(&repo_path, &["new", "--insert-after", "description(b)"]); | ||
insta::assert_snapshot!(stderr, @r###" | ||
Error: Commit 406c181c04d8 is immutable | ||
Error: Commit 3e0250828ca5 is immutable | ||
Hint: Pass `--ignore-immutable` or configure the set of immutable commits via `revset-aliases.immutable_heads()`. | ||
"###); | ||
// parallelize | ||
let stderr = test_env.jj_cmd_failure(&repo_path, &["parallelize", "description(b)", "main"]); | ||
insta::assert_snapshot!(stderr, @r###" | ||
Error: Commit 406c181c04d8 is immutable | ||
Error: Commit 3e0250828ca5 is immutable | ||
Hint: Pass `--ignore-immutable` or configure the set of immutable commits via `revset-aliases.immutable_heads()`. | ||
"###); | ||
// rebase -s | ||
let stderr = test_env.jj_cmd_failure(&repo_path, &["rebase", "-s=main", "-d=@"]); | ||
insta::assert_snapshot!(stderr, @r###" | ||
Error: Commit 406c181c04d8 is immutable | ||
Error: Commit 3e0250828ca5 is immutable | ||
Hint: Pass `--ignore-immutable` or configure the set of immutable commits via `revset-aliases.immutable_heads()`. | ||
"###); | ||
// rebase -b | ||
|
@@ -220,31 +223,31 @@ fn test_rewrite_immutable_commands() { | |
// rebase -r | ||
let stderr = test_env.jj_cmd_failure(&repo_path, &["rebase", "-r=main", "-d=@"]); | ||
insta::assert_snapshot!(stderr, @r###" | ||
Error: Commit 406c181c04d8 is immutable | ||
Error: Commit 3e0250828ca5 is immutable | ||
Hint: Pass `--ignore-immutable` or configure the set of immutable commits via `revset-aliases.immutable_heads()`. | ||
"###); | ||
// resolve | ||
let stderr = test_env.jj_cmd_failure(&repo_path, &["resolve", "-r=description(merge)", "file"]); | ||
insta::assert_snapshot!(stderr, @r###" | ||
Error: Commit 406c181c04d8 is immutable | ||
Error: Commit 3e0250828ca5 is immutable | ||
Hint: Pass `--ignore-immutable` or configure the set of immutable commits via `revset-aliases.immutable_heads()`. | ||
"###); | ||
// restore -c | ||
let stderr = test_env.jj_cmd_failure(&repo_path, &["restore", "-c=main"]); | ||
insta::assert_snapshot!(stderr, @r###" | ||
Error: Commit 406c181c04d8 is immutable | ||
Error: Commit 3e0250828ca5 is immutable | ||
Hint: Pass `--ignore-immutable` or configure the set of immutable commits via `revset-aliases.immutable_heads()`. | ||
"###); | ||
// restore --to | ||
let stderr = test_env.jj_cmd_failure(&repo_path, &["restore", "--to=main"]); | ||
insta::assert_snapshot!(stderr, @r###" | ||
Error: Commit 406c181c04d8 is immutable | ||
Error: Commit 3e0250828ca5 is immutable | ||
Hint: Pass `--ignore-immutable` or configure the set of immutable commits via `revset-aliases.immutable_heads()`. | ||
"###); | ||
// split | ||
let stderr = test_env.jj_cmd_failure(&repo_path, &["split", "-r=main"]); | ||
insta::assert_snapshot!(stderr, @r###" | ||
Error: Commit 406c181c04d8 is immutable | ||
Error: Commit 3e0250828ca5 is immutable | ||
Hint: Pass `--ignore-immutable` or configure the set of immutable commits via `revset-aliases.immutable_heads()`. | ||
"###); | ||
// squash -r | ||
|
@@ -256,19 +259,19 @@ fn test_rewrite_immutable_commands() { | |
// squash --from | ||
let stderr = test_env.jj_cmd_failure(&repo_path, &["squash", "--from=main"]); | ||
insta::assert_snapshot!(stderr, @r###" | ||
Error: Commit 406c181c04d8 is immutable | ||
Error: Commit 3e0250828ca5 is immutable | ||
Hint: Pass `--ignore-immutable` or configure the set of immutable commits via `revset-aliases.immutable_heads()`. | ||
"###); | ||
// squash --into | ||
let stderr = test_env.jj_cmd_failure(&repo_path, &["squash", "--into=main"]); | ||
insta::assert_snapshot!(stderr, @r###" | ||
Error: Commit 406c181c04d8 is immutable | ||
Error: Commit 3e0250828ca5 is immutable | ||
Hint: Pass `--ignore-immutable` or configure the set of immutable commits via `revset-aliases.immutable_heads()`. | ||
"###); | ||
// unsquash | ||
let stderr = test_env.jj_cmd_failure(&repo_path, &["unsquash", "-r=main"]); | ||
insta::assert_snapshot!(stderr, @r###" | ||
Error: Commit 406c181c04d8 is immutable | ||
Error: Commit 3e0250828ca5 is immutable | ||
Hint: Pass `--ignore-immutable` or configure the set of immutable commits via `revset-aliases.immutable_heads()`. | ||
"###); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters