diff options
author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2017-02-09 23:23:11 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-02-09 23:55:40 +0100 |
commit | 18633e1a22a68bbe8e6311a1039d13ebbf6fd041 (patch) | |
tree | 515d4fee7afdd53ebfe544bb9c38394c305d2aa0 /t/t3404-rebase-interactive.sh | |
parent | rebase--helper: add a builtin helper for interactive rebases (diff) | |
download | git-18633e1a22a68bbe8e6311a1039d13ebbf6fd041.tar.xz git-18633e1a22a68bbe8e6311a1039d13ebbf6fd041.zip |
rebase -i: use the rebase--helper builtin
Now that the sequencer learned to process a "normal" interactive rebase,
we use it. The original shell script is still used for "non-normal"
interactive rebases, i.e. when --root or --preserve-merges was passed.
Please note that the --root option (via the $squash_onto variable) needs
special handling only for the very first command, hence it is still okay
to use the helper upon continue/skip.
Also please note that the --no-ff setting is volatile, i.e. when the
interactive rebase is interrupted at any stage, there is no record of
it. Therefore, we have to pass it from the shell script to the
rebase--helper.
Note: the test t3404 had to be adjusted because the the error messages
produced by the sequencer comply with our current convention to start with
a lower-case letter.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t3404-rebase-interactive.sh')
-rwxr-xr-x | t/t3404-rebase-interactive.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t3404-rebase-interactive.sh b/t/t3404-rebase-interactive.sh index e2f18d11f6..33d392ba11 100755 --- a/t/t3404-rebase-interactive.sh +++ b/t/t3404-rebase-interactive.sh @@ -556,7 +556,7 @@ test_expect_success 'clean error after failed "exec"' ' echo "edited again" > file7 && git add file7 && test_must_fail git rebase --continue 2>error && - test_i18ngrep "You have staged changes in your working tree." error + test_i18ngrep "you have staged changes in your working tree" error ' test_expect_success 'rebase a detached HEAD' ' |