We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e7cc0ed + bd46cfa commit 0756529Copy full SHA for 0756529
t/t3404-rebase-interactive.sh
@@ -67,6 +67,14 @@ test_expect_success 'setup' '
67
SHELL=
68
export SHELL
69
70
+test_expect_success 'rebase --keep-empty' '
71
+ git checkout -b emptybranch master &&
72
+ git commit --allow-empty -m "empty" &&
73
+ git rebase --keep-empty -i HEAD~2 &&
74
+ git log --oneline >actual &&
75
+ test_line_count = 6 actual
76
+'
77
+
78
test_expect_success 'rebase -i with the exec command' '
79
git checkout master &&
80
(
0 commit comments