3 # Copyright (c) 2007 Johannes E. Schindelin
6 test_description='git rebase interactive
8 This test runs git rebase "interactively", by faking an edit, and verifies
9 that the result still makes sense.
13 one - two - three - four (conflict-branch)
15 A - B - C - D - E (master)
21 | J - K - L - M (no-conflict-branch)
23 N - O - P (no-ff-branch)
25 where A, B, D and G all touch file1, and one, two, three, four all
26 touch file "conflict".
30 . "$TEST_DIRECTORY"/lib-rebase.sh
32 # WARNING: Modifications to the initial repository can change the SHA ID used
33 # in the expect2 file for the 'stop on conflicting pick' test.
35 test_expect_success 'setup' '
36 test_commit A file1 &&
37 test_commit B file1 &&
38 test_commit C file2 &&
39 test_commit D file1 &&
40 test_commit E file3 &&
41 git checkout -b branch1 A &&
42 test_commit F file4 &&
43 test_commit G file1 &&
44 test_commit H file5 &&
45 git checkout -b branch2 F &&
46 test_commit I file6 &&
47 git checkout -b conflict-branch A &&
48 test_commit one conflict &&
49 test_commit two conflict &&
50 test_commit three conflict &&
51 test_commit four conflict &&
52 git checkout -b no-conflict-branch A &&
53 test_commit J fileJ &&
54 test_commit K fileK &&
55 test_commit L fileL &&
56 test_commit M fileM &&
57 git checkout -b no-ff-branch A &&
58 test_commit N fileN &&
59 test_commit O fileO &&
63 # "exec" commands are run with the user shell by default, but this may
64 # be non-POSIX. For example, if SHELL=zsh then ">file" doesn't work
65 # to create a file. Unsetting SHELL avoids such non-portable behavior
66 # in tests. It must be exported for it to take effect where needed.
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
78 test_expect_success 'rebase -i with empty HEAD' '
79 cat >expect <<-\EOF &&
83 test_must_fail env FAKE_LINES="1 exec_true" git rebase -i HEAD^ >actual 2>&1 &&
84 test_i18ncmp expect actual
87 test_expect_success 'rebase -i with the exec command' '
88 git checkout master &&
91 FAKE_LINES="1 exec_>touch-one
92 2 exec_>touch-two exec_false exec_>touch-three
93 3 4 exec_>\"touch-file__name_with_spaces\";_>touch-after-semicolon 5" &&
95 test_must_fail git rebase -i A
97 test_path_is_file touch-one &&
98 test_path_is_file touch-two &&
99 test_path_is_missing touch-three " (should have stopped before)" &&
100 test_cmp_rev C HEAD &&
101 git rebase --continue &&
102 test_path_is_file touch-three &&
103 test_path_is_file "touch-file name with spaces" &&
104 test_path_is_file touch-after-semicolon &&
105 test_cmp_rev master HEAD &&
109 test_expect_success 'rebase -i with the exec command runs from tree root' '
110 git checkout master &&
111 mkdir subdir && (cd subdir &&
113 FAKE_LINES="1 exec_>touch-subdir" \
116 test_path_is_file touch-subdir &&
120 test_expect_success 'rebase -i with exec allows git commands in subdirs' '
121 test_when_finished "rm -rf subdir" &&
122 test_when_finished "git rebase --abort ||:" &&
123 git checkout master &&
124 mkdir subdir && (cd subdir &&
126 FAKE_LINES="1 x_cd_subdir_&&_git_rev-parse_--is-inside-work-tree" \
131 test_expect_success 'rebase -i sets work tree properly' '
132 test_when_finished "rm -rf subdir" &&
133 test_when_finished "test_might_fail git rebase --abort" &&
135 git rebase -x "(cd subdir && git rev-parse --show-toplevel)" HEAD^ \
137 ! grep "/subdir$" actual
140 test_expect_success 'rebase -i with the exec command checks tree cleanness' '
141 git checkout master &&
143 test_must_fail env FAKE_LINES="exec_echo_foo_>file1 1" git rebase -i HEAD^ &&
144 test_cmp_rev master^ HEAD &&
146 git rebase --continue
149 test_expect_success 'rebase -x with empty command fails' '
150 test_when_finished "git rebase --abort ||:" &&
151 test_must_fail env git rebase -x "" @ 2>actual &&
152 test_write_lines "error: empty exec command" >expected &&
153 test_i18ncmp expected actual &&
154 test_must_fail env git rebase -x " " @ 2>actual &&
155 test_i18ncmp expected actual
160 test_expect_success 'rebase -x with newline in command fails' '
161 test_when_finished "git rebase --abort ||:" &&
162 test_must_fail env git rebase -x "a${LF}b" @ 2>actual &&
163 test_write_lines "error: exec commands cannot contain newlines" \
165 test_i18ncmp expected actual
168 test_expect_success 'rebase -i with exec of inexistent command' '
169 git checkout master &&
170 test_when_finished "git rebase --abort" &&
172 test_must_fail env FAKE_LINES="exec_this-command-does-not-exist 1" \
173 git rebase -i HEAD^ >actual 2>&1 &&
174 ! grep "Maybe git-rebase is broken" actual
177 test_expect_success 'implicit interactive rebase does not invoke sequence editor' '
178 test_when_finished "git rebase --abort ||:" &&
179 GIT_SEQUENCE_EDITOR="echo bad >" git rebase -x"echo one" @^
182 test_expect_success 'no changes are a nop' '
183 git checkout branch2 &&
186 test "$(git symbolic-ref -q HEAD)" = "refs/heads/branch2" &&
187 test $(git rev-parse I) = $(git rev-parse HEAD)
190 test_expect_success 'test the [branch] option' '
191 git checkout -b dead-end &&
193 git commit -m "stop here" &&
195 git rebase -i F branch2 &&
196 test "$(git symbolic-ref -q HEAD)" = "refs/heads/branch2" &&
197 test $(git rev-parse I) = $(git rev-parse branch2) &&
198 test $(git rev-parse I) = $(git rev-parse HEAD)
201 test_expect_success 'test --onto <branch>' '
202 git checkout -b test-onto branch2 &&
204 git rebase -i --onto branch1 F &&
205 test "$(git symbolic-ref -q HEAD)" = "refs/heads/test-onto" &&
206 test $(git rev-parse HEAD^) = $(git rev-parse branch1) &&
207 test $(git rev-parse I) = $(git rev-parse branch2)
210 test_expect_success 'rebase on top of a non-conflicting commit' '
211 git checkout branch1 &&
212 git tag original-branch1 &&
214 git rebase -i branch2 &&
215 test file6 = $(git diff --name-only original-branch1) &&
216 test "$(git symbolic-ref -q HEAD)" = "refs/heads/branch1" &&
217 test $(git rev-parse I) = $(git rev-parse branch2) &&
218 test $(git rev-parse I) = $(git rev-parse HEAD~2)
221 test_expect_success 'reflog for the branch shows state before rebase' '
222 test $(git rev-parse branch1@{1}) = $(git rev-parse original-branch1)
225 test_expect_success 'reflog for the branch shows correct finish message' '
226 printf "rebase -i (finish): refs/heads/branch1 onto %s\n" \
227 "$(git rev-parse branch2)" >expected &&
228 git log -g --pretty=%gs -1 refs/heads/branch1 >actual &&
229 test_cmp expected actual
232 test_expect_success 'exchange two commits' '
234 FAKE_LINES="2 1" git rebase -i HEAD~2 &&
235 test H = $(git cat-file commit HEAD^ | sed -ne \$p) &&
236 test G = $(git cat-file commit HEAD | sed -ne \$p)
239 test_expect_success 'stop on conflicting pick' '
240 cat >expect <<-\EOF &&
241 diff --git a/file1 b/file1
242 index f70f10e..fd79235 100644
249 cat >expect2 <<-\EOF &&
256 git tag new-branch1 &&
258 test_must_fail git rebase -i master &&
259 test "$(git rev-parse HEAD~3)" = "$(git rev-parse master)" &&
260 test_cmp expect .git/rebase-merge/patch &&
261 test_cmp expect2 file1 &&
262 test "$(git diff --name-status |
263 sed -n -e "/^U/s/^U[^a-z]*//p")" = file1 &&
264 test 4 = $(grep -v "^#" < .git/rebase-merge/done | wc -l) &&
265 test 0 = $(grep -c "^[^#]" < .git/rebase-merge/git-rebase-todo)
268 test_expect_success 'show conflicted patch' '
269 GIT_TRACE=1 git rebase --show-current-patch >/dev/null 2>stderr &&
270 grep "show.*REBASE_HEAD" stderr &&
271 # the original stopped-sha1 is abbreviated
272 stopped_sha1="$(git rev-parse $(cat ".git/rebase-merge/stopped-sha"))" &&
273 test "$(git rev-parse REBASE_HEAD)" = "$stopped_sha1"
276 test_expect_success 'abort' '
277 git rebase --abort &&
278 test $(git rev-parse new-branch1) = $(git rev-parse HEAD) &&
279 test "$(git symbolic-ref -q HEAD)" = "refs/heads/branch1" &&
280 test_path_is_missing .git/rebase-merge
283 test_expect_success 'abort with error when new base cannot be checked out' '
284 git rm --cached file1 &&
285 git commit -m "remove file in base" &&
287 test_must_fail git rebase -i master > output 2>&1 &&
288 test_i18ngrep "The following untracked working tree files would be overwritten by checkout:" \
290 test_i18ngrep "file1" output &&
291 test_path_is_missing .git/rebase-merge &&
292 git reset --hard HEAD^
295 test_expect_success 'retain authorship' '
299 GIT_AUTHOR_NAME="Twerp Snog" git commit -m "different author" &&
302 git rebase -i --onto master HEAD^ &&
303 git show HEAD | grep "^Author: Twerp Snog"
306 test_expect_success 'retain authorship w/ conflicts' '
307 oGIT_AUTHOR_NAME=$GIT_AUTHOR_NAME &&
308 test_when_finished "GIT_AUTHOR_NAME=\$oGIT_AUTHOR_NAME" &&
310 git reset --hard twerp &&
311 test_commit a conflict a conflict-a &&
312 git reset --hard twerp &&
314 GIT_AUTHOR_NAME=AttributeMe &&
315 export GIT_AUTHOR_NAME &&
316 test_commit b conflict b conflict-b &&
317 GIT_AUTHOR_NAME=$oGIT_AUTHOR_NAME &&
320 test_must_fail git rebase -i conflict-a &&
321 echo resolved >conflict &&
323 git rebase --continue &&
324 test $(git rev-parse conflict-a^0) = $(git rev-parse HEAD^) &&
329 test_expect_success 'squash' '
330 git reset --hard twerp &&
333 GIT_AUTHOR_NAME="Nitfol" git commit -m "nitfol" file7 &&
334 echo "******************************" &&
336 FAKE_LINES="1 squash 2" EXPECT_HEADER_COUNT=2 \
337 git rebase -i --onto master HEAD~2 &&
338 test B = $(cat file7) &&
339 test $(git rev-parse HEAD^) = $(git rev-parse master)
342 test_expect_success 'retain authorship when squashing' '
343 git show HEAD | grep "^Author: Twerp Snog"
346 test_expect_success REBASE_P '-p handles "no changes" gracefully' '
347 HEAD=$(git rev-parse HEAD) &&
349 git rebase -i -p HEAD^ &&
350 git update-index --refresh &&
351 git diff-files --quiet &&
352 git diff-index --quiet --cached HEAD -- &&
353 test $HEAD = $(git rev-parse HEAD)
356 test_expect_failure REBASE_P 'exchange two commits with -p' '
359 FAKE_LINES="2 1" git rebase -i -p HEAD~2 &&
360 test H = $(git cat-file commit HEAD^ | sed -ne \$p) &&
361 test G = $(git cat-file commit HEAD | sed -ne \$p)
364 test_expect_success REBASE_P 'preserve merges with -p' '
365 git checkout -b to-be-preserved master^ &&
366 : > unrelated-file &&
367 git add unrelated-file &&
369 git commit -m "unrelated" &&
370 git checkout -b another-branch master &&
373 git commit -m J file1 &&
375 git merge to-be-preserved &&
378 git commit -m K file1 &&
381 git commit -m L1 file1 &&
382 git checkout HEAD^ &&
383 echo 1 > unrelated-file &&
385 git commit -m L2 unrelated-file &&
387 git merge another-branch &&
390 git commit -m M file1 &&
391 git checkout -b to-be-rebased &&
394 git rebase -i -p --onto branch1 master &&
395 git update-index --refresh &&
396 git diff-files --quiet &&
397 git diff-index --quiet --cached HEAD -- &&
398 test $(git rev-parse HEAD~6) = $(git rev-parse branch1) &&
399 test $(git rev-parse HEAD~4^2) = $(git rev-parse to-be-preserved) &&
400 test $(git rev-parse HEAD^^2^) = $(git rev-parse HEAD^^^) &&
401 test $(git show HEAD~5:file1) = B &&
402 test $(git show HEAD~3:file1) = C &&
403 test $(git show HEAD:file1) = E &&
404 test $(git show HEAD:unrelated-file) = 1
407 test_expect_success REBASE_P 'edit ancestor with -p' '
409 FAKE_LINES="1 2 edit 3 4" git rebase -i -p HEAD~3 &&
410 echo 2 > unrelated-file &&
412 git commit -m L2-modified --amend unrelated-file &&
413 git rebase --continue &&
414 git update-index --refresh &&
415 git diff-files --quiet &&
416 git diff-index --quiet --cached HEAD -- &&
417 test $(git show HEAD:unrelated-file) = 2
420 test_expect_success '--continue tries to commit' '
421 git reset --hard D &&
424 test_must_fail git rebase -i --onto new-branch1 HEAD^ &&
425 echo resolved > file1 &&
427 FAKE_COMMIT_MESSAGE="chouette!" git rebase --continue &&
428 test $(git rev-parse HEAD^) = $(git rev-parse new-branch1) &&
429 git show HEAD | grep chouette
432 test_expect_success 'verbose flag is heeded, even after --continue' '
433 git reset --hard master@{1} &&
436 test_must_fail git rebase -v -i --onto new-branch1 HEAD^ &&
437 echo resolved > file1 &&
439 git rebase --continue > output &&
440 grep "^ file1 | 2 +-$" output
443 test_expect_success C_LOCALE_OUTPUT 'multi-squash only fires up editor once' '
444 base=$(git rev-parse HEAD~4) &&
446 FAKE_COMMIT_AMEND="ONCE" FAKE_LINES="1 squash 2 squash 3 squash 4" \
447 EXPECT_HEADER_COUNT=4 \
448 git rebase -i $base &&
449 test $base = $(git rev-parse HEAD^) &&
450 test 1 = $(git show | grep ONCE | wc -l)
453 test_expect_success C_LOCALE_OUTPUT 'multi-fixup does not fire up editor' '
454 git checkout -b multi-fixup E &&
455 base=$(git rev-parse HEAD~4) &&
457 FAKE_COMMIT_AMEND="NEVER" FAKE_LINES="1 fixup 2 fixup 3 fixup 4" \
458 git rebase -i $base &&
459 test $base = $(git rev-parse HEAD^) &&
460 test 0 = $(git show | grep NEVER | wc -l) &&
461 git checkout @{-1} &&
462 git branch -D multi-fixup
465 test_expect_success 'commit message used after conflict' '
466 git checkout -b conflict-fixup conflict-branch &&
467 base=$(git rev-parse HEAD~4) &&
469 test_must_fail env FAKE_LINES="1 fixup 3 fixup 4" git rebase -i $base &&
470 echo three > conflict &&
472 FAKE_COMMIT_AMEND="ONCE" EXPECT_HEADER_COUNT=2 \
473 git rebase --continue &&
474 test $base = $(git rev-parse HEAD^) &&
475 test 1 = $(git show | grep ONCE | wc -l) &&
476 git checkout @{-1} &&
477 git branch -D conflict-fixup
480 test_expect_success 'commit message retained after conflict' '
481 git checkout -b conflict-squash conflict-branch &&
482 base=$(git rev-parse HEAD~4) &&
484 test_must_fail env FAKE_LINES="1 fixup 3 squash 4" git rebase -i $base &&
485 echo three > conflict &&
487 FAKE_COMMIT_AMEND="TWICE" EXPECT_HEADER_COUNT=2 \
488 git rebase --continue &&
489 test $base = $(git rev-parse HEAD^) &&
490 test 2 = $(git show | grep TWICE | wc -l) &&
491 git checkout @{-1} &&
492 git branch -D conflict-squash
495 test_expect_success C_LOCALE_OUTPUT 'squash and fixup generate correct log messages' '
496 cat >expect-squash-fixup <<-\EOF &&
503 git checkout -b squash-fixup E &&
504 base=$(git rev-parse HEAD~4) &&
506 FAKE_COMMIT_AMEND="ONCE" FAKE_LINES="1 fixup 2 squash 3 fixup 4" \
507 EXPECT_HEADER_COUNT=4 \
508 git rebase -i $base &&
509 git cat-file commit HEAD | sed -e 1,/^\$/d > actual-squash-fixup &&
510 test_cmp expect-squash-fixup actual-squash-fixup &&
511 git cat-file commit HEAD@{2} |
512 grep "^# This is a combination of 3 commits\." &&
513 git cat-file commit HEAD@{3} |
514 grep "^# This is a combination of 2 commits\." &&
515 git checkout @{-1} &&
516 git branch -D squash-fixup
519 test_expect_success C_LOCALE_OUTPUT 'squash ignores comments' '
520 git checkout -b skip-comments E &&
521 base=$(git rev-parse HEAD~4) &&
523 FAKE_COMMIT_AMEND="ONCE" FAKE_LINES="# 1 # squash 2 # squash 3 # squash 4 #" \
524 EXPECT_HEADER_COUNT=4 \
525 git rebase -i $base &&
526 test $base = $(git rev-parse HEAD^) &&
527 test 1 = $(git show | grep ONCE | wc -l) &&
528 git checkout @{-1} &&
529 git branch -D skip-comments
532 test_expect_success C_LOCALE_OUTPUT 'squash ignores blank lines' '
533 git checkout -b skip-blank-lines E &&
534 base=$(git rev-parse HEAD~4) &&
536 FAKE_COMMIT_AMEND="ONCE" FAKE_LINES="> 1 > squash 2 > squash 3 > squash 4 >" \
537 EXPECT_HEADER_COUNT=4 \
538 git rebase -i $base &&
539 test $base = $(git rev-parse HEAD^) &&
540 test 1 = $(git show | grep ONCE | wc -l) &&
541 git checkout @{-1} &&
542 git branch -D skip-blank-lines
545 test_expect_success 'squash works as expected' '
546 git checkout -b squash-works no-conflict-branch &&
547 one=$(git rev-parse HEAD~3) &&
549 FAKE_LINES="1 s 3 2" EXPECT_HEADER_COUNT=2 \
550 git rebase -i HEAD~3 &&
551 test $one = $(git rev-parse HEAD~2)
554 test_expect_success 'interrupted squash works as expected' '
555 git checkout -b interrupted-squash conflict-branch &&
556 one=$(git rev-parse HEAD~3) &&
558 test_must_fail env FAKE_LINES="1 squash 3 2" git rebase -i HEAD~3 &&
559 test_write_lines one two four > conflict &&
561 test_must_fail git rebase --continue &&
562 echo resolved > conflict &&
564 git rebase --continue &&
565 test $one = $(git rev-parse HEAD~2)
568 test_expect_success 'interrupted squash works as expected (case 2)' '
569 git checkout -b interrupted-squash2 conflict-branch &&
570 one=$(git rev-parse HEAD~3) &&
572 test_must_fail env FAKE_LINES="3 squash 1 2" git rebase -i HEAD~3 &&
573 test_write_lines one four > conflict &&
575 test_must_fail git rebase --continue &&
576 test_write_lines one two four > conflict &&
578 test_must_fail git rebase --continue &&
579 echo resolved > conflict &&
581 git rebase --continue &&
582 test $one = $(git rev-parse HEAD~2)
585 test_expect_success '--continue tries to commit, even for "edit"' '
586 echo unrelated > file7 &&
589 git commit -m "unrelated change" &&
590 parent=$(git rev-parse HEAD^) &&
593 FAKE_LINES="edit 1" git rebase -i HEAD^ &&
594 echo edited > file7 &&
596 FAKE_COMMIT_MESSAGE="chouette!" git rebase --continue &&
597 test edited = $(git show HEAD:file7) &&
598 git show HEAD | grep chouette &&
599 test $parent = $(git rev-parse HEAD^)
602 test_expect_success 'aborted --continue does not squash commits after "edit"' '
603 old=$(git rev-parse HEAD) &&
606 FAKE_LINES="edit 1" git rebase -i HEAD^ &&
607 echo "edited again" > file7 &&
609 test_must_fail env FAKE_COMMIT_MESSAGE=" " git rebase --continue &&
610 test $old = $(git rev-parse HEAD) &&
614 test_expect_success 'auto-amend only edited commits after "edit"' '
617 FAKE_LINES="edit 1" git rebase -i HEAD^ &&
618 echo "edited again" > file7 &&
620 FAKE_COMMIT_MESSAGE="edited file7 again" git commit &&
621 echo "and again" > file7 &&
624 test_must_fail env FAKE_COMMIT_MESSAGE="and again" git rebase --continue &&
628 test_expect_success 'clean error after failed "exec"' '
630 test_when_finished "git rebase --abort || :" &&
632 test_must_fail env FAKE_LINES="1 exec_false" git rebase -i HEAD^ &&
633 echo "edited again" > file7 &&
635 test_must_fail git rebase --continue 2>error &&
636 test_i18ngrep "you have staged changes in your working tree" error
639 test_expect_success 'rebase a detached HEAD' '
640 grandparent=$(git rev-parse HEAD~2) &&
641 git checkout $(git rev-parse HEAD) &&
644 FAKE_LINES="2 1" git rebase -i HEAD~2 &&
645 test $grandparent = $(git rev-parse HEAD~2)
648 test_expect_success 'rebase a commit violating pre-commit' '
650 mkdir -p .git/hooks &&
651 write_script .git/hooks/pre-commit <<-\EOF &&
652 test -z "$(git diff --cached --check)"
654 echo "monde! " >> file1 &&
656 test_must_fail git commit -m doesnt-verify file1 &&
657 git commit -m doesnt-verify --no-verify file1 &&
660 FAKE_LINES=2 git rebase -i HEAD~2
664 test_expect_success 'rebase with a file named HEAD in worktree' '
668 git checkout -b branch3 A &&
671 GIT_AUTHOR_NAME="Squashed Away" &&
672 export GIT_AUTHOR_NAME &&
675 git commit -m "Add head" &&
678 git commit -m "Add body"
682 FAKE_LINES="1 squash 2" git rebase -i @{-1} &&
683 test "$(git show -s --pretty=format:%an)" = "Squashed Away"
687 test_expect_success 'do "noop" when there is nothing to cherry-pick' '
689 git checkout -b branch4 HEAD &&
690 GIT_EDITOR=: git commit --amend \
691 --author="Somebody else <somebody@else.com>" &&
692 test $(git rev-parse branch3) != $(git rev-parse branch4) &&
694 git rebase -i branch3 &&
695 test $(git rev-parse branch3) = $(git rev-parse branch4)
699 test_expect_success 'submodule rebase setup' '
703 cd sub && git init && >elif &&
704 git add elif && git commit -m "submodule initial"
709 git commit -m "One" &&
712 git commit -a -m "Two" &&
714 cd sub && echo 3 >elif &&
715 git commit -a -m "submodule second"
719 git commit -a -m "Three changes submodule"
722 test_expect_success 'submodule rebase -i' '
724 FAKE_LINES="1 squash 2 3" git rebase -i A
727 test_expect_success 'submodule conflict setup' '
728 git tag submodule-base &&
729 git checkout HEAD^ &&
731 cd sub && git checkout HEAD^ && echo 4 >elif &&
732 git add elif && git commit -m "submodule conflict"
736 git commit -m "Conflict in submodule" &&
737 git tag submodule-topic
740 test_expect_success 'rebase -i continue with only submodule staged' '
742 test_must_fail git rebase -i submodule-base &&
744 git rebase --continue &&
745 test $(git rev-parse submodule-base) != $(git rev-parse HEAD)
748 test_expect_success 'rebase -i continue with unstaged submodule' '
749 git checkout submodule-topic &&
752 test_must_fail git rebase -i submodule-base &&
754 git rebase --continue &&
755 test $(git rev-parse submodule-base) = $(git rev-parse HEAD)
758 test_expect_success 'avoid unnecessary reset' '
759 git checkout master &&
761 test-tool chmtime =123456789 file3 &&
762 git update-index --refresh &&
763 HEAD=$(git rev-parse HEAD) &&
765 git rebase -i HEAD~4 &&
766 test $HEAD = $(git rev-parse HEAD) &&
767 MTIME=$(test-tool chmtime --get file3) &&
768 test 123456789 = $MTIME
771 test_expect_success 'reword' '
772 git checkout -b reword-branch master &&
774 FAKE_LINES="1 2 3 reword 4" FAKE_COMMIT_MESSAGE="E changed" git rebase -i A &&
775 git show HEAD | grep "E changed" &&
776 test $(git rev-parse master) != $(git rev-parse HEAD) &&
777 test $(git rev-parse master^) = $(git rev-parse HEAD^) &&
778 FAKE_LINES="1 2 reword 3 4" FAKE_COMMIT_MESSAGE="D changed" git rebase -i A &&
779 git show HEAD^ | grep "D changed" &&
780 FAKE_LINES="reword 1 2 3 4" FAKE_COMMIT_MESSAGE="B changed" git rebase -i A &&
781 git show HEAD~3 | grep "B changed" &&
782 FAKE_LINES="1 r 2 pick 3 p 4" FAKE_COMMIT_MESSAGE="C changed" git rebase -i A &&
783 git show HEAD~2 | grep "C changed"
786 test_expect_success 'rebase -i can copy notes' '
787 git config notes.rewrite.rebase true &&
788 git config notes.rewriteRef "refs/notes/*" &&
792 git notes add -m"a note" n3 &&
794 git rebase -i --onto n1 n2 &&
795 test "a note" = "$(git notes show HEAD)"
798 test_expect_success 'rebase -i can copy notes over a fixup' '
799 cat >expect <<-\EOF &&
804 git reset --hard n3 &&
805 git notes add -m"an earlier note" n2 &&
807 GIT_NOTES_REWRITE_MODE=concatenate FAKE_LINES="1 f 2" git rebase -i n1 &&
808 git notes show > output &&
809 test_cmp expect output
812 test_expect_success 'rebase while detaching HEAD' '
813 git symbolic-ref HEAD &&
814 grandparent=$(git rev-parse HEAD~2) &&
817 FAKE_LINES="2 1" git rebase -i HEAD~2 HEAD^0 &&
818 test $grandparent = $(git rev-parse HEAD~2) &&
819 test_must_fail git symbolic-ref HEAD
822 test_tick # Ensure that the rebased commits get a different timestamp.
823 test_expect_success 'always cherry-pick with --no-ff' '
824 git checkout no-ff-branch &&
825 git tag original-no-ff-branch &&
827 git rebase -i --no-ff A &&
830 test ! $(git rev-parse HEAD~$p) = $(git rev-parse original-no-ff-branch~$p) &&
831 git diff HEAD~$p original-no-ff-branch~$p > out &&
832 test_must_be_empty out
834 test $(git rev-parse HEAD~3) = $(git rev-parse original-no-ff-branch~3) &&
835 git diff HEAD~3 original-no-ff-branch~3 > out &&
836 test_must_be_empty out
839 test_expect_success 'set up commits with funny messages' '
840 git checkout -b funny A &&
843 git commit -a -m "end with slash\\" &&
846 git commit -a -m "something (\000) that looks like octal" &&
849 git commit -a -m "something (\n) that looks like a newline" &&
852 git commit -a -m "another commit"
855 test_expect_success 'rebase-i history with funny messages' '
856 git rev-list A..funny >expect &&
859 FAKE_LINES="1 2 3 4" git rebase -i A &&
860 git rev-list A.. >actual &&
861 test_cmp expect actual
864 test_expect_success 'prepare for rebase -i --exec' '
865 git checkout master &&
866 git checkout -b execute &&
867 test_commit one_exec main.txt one_exec &&
868 test_commit two_exec main.txt two_exec &&
869 test_commit three_exec main.txt three_exec
872 test_expect_success 'running "git rebase -i --exec git show HEAD"' '
874 git rebase -i --exec "git show HEAD" HEAD~2 >actual &&
876 FAKE_LINES="1 exec_git_show_HEAD 2 exec_git_show_HEAD" &&
878 git rebase -i HEAD~2 >expect
880 sed -e "1,9d" expect >expected &&
881 test_cmp expected actual
884 test_expect_success 'running "git rebase --exec git show HEAD -i"' '
885 git reset --hard execute &&
887 git rebase --exec "git show HEAD" -i HEAD~2 >actual &&
889 FAKE_LINES="1 exec_git_show_HEAD 2 exec_git_show_HEAD" &&
891 git rebase -i HEAD~2 >expect
893 sed -e "1,9d" expect >expected &&
894 test_cmp expected actual
897 test_expect_success 'running "git rebase -ix git show HEAD"' '
898 git reset --hard execute &&
900 git rebase -ix "git show HEAD" HEAD~2 >actual &&
902 FAKE_LINES="1 exec_git_show_HEAD 2 exec_git_show_HEAD" &&
904 git rebase -i HEAD~2 >expect
906 sed -e "1,9d" expect >expected &&
907 test_cmp expected actual
911 test_expect_success 'rebase -ix with several <CMD>' '
912 git reset --hard execute &&
914 git rebase -ix "git show HEAD; pwd" HEAD~2 >actual &&
916 FAKE_LINES="1 exec_git_show_HEAD;_pwd 2 exec_git_show_HEAD;_pwd" &&
918 git rebase -i HEAD~2 >expect
920 sed -e "1,9d" expect >expected &&
921 test_cmp expected actual
924 test_expect_success 'rebase -ix with several instances of --exec' '
925 git reset --hard execute &&
927 git rebase -i --exec "git show HEAD" --exec "pwd" HEAD~2 >actual &&
929 FAKE_LINES="1 exec_git_show_HEAD exec_pwd 2
930 exec_git_show_HEAD exec_pwd" &&
932 git rebase -i HEAD~2 >expect
934 sed -e "1,11d" expect >expected &&
935 test_cmp expected actual
938 test_expect_success C_LOCALE_OUTPUT 'rebase -ix with --autosquash' '
939 git reset --hard execute &&
940 git checkout -b autosquash &&
941 echo second >second.txt &&
942 git add second.txt &&
943 git commit -m "fixup! two_exec" &&
946 git commit -m "fixup! two_exec" &&
949 git checkout -b autosquash_actual &&
950 git rebase -i --exec "git show HEAD" --autosquash HEAD~4 >actual
952 git checkout autosquash &&
954 git checkout -b autosquash_expected &&
955 FAKE_LINES="1 fixup 3 fixup 4 exec_git_show_HEAD 2 exec_git_show_HEAD" &&
957 git rebase -i HEAD~4 >expect
959 sed -e "1,13d" expect >expected &&
960 test_cmp expected actual
963 test_expect_success 'rebase --exec works without -i ' '
964 git reset --hard execute &&
965 rm -rf exec_output &&
966 EDITOR="echo >invoked_editor" git rebase --exec "echo a line >>exec_output" HEAD~2 2>actual &&
967 test_i18ngrep "Successfully rebased and updated" actual &&
968 test_line_count = 2 exec_output &&
969 test_path_is_missing invoked_editor
972 test_expect_success 'rebase -i --exec without <CMD>' '
973 git reset --hard execute &&
975 test_must_fail git rebase -i --exec 2>actual &&
976 test_i18ngrep "requires a value" actual &&
980 test_expect_success 'rebase -i --root re-order and drop commits' '
983 FAKE_LINES="3 1 2 5" git rebase -i --root &&
984 test E = $(git cat-file commit HEAD | sed -ne \$p) &&
985 test B = $(git cat-file commit HEAD^ | sed -ne \$p) &&
986 test A = $(git cat-file commit HEAD^^ | sed -ne \$p) &&
987 test C = $(git cat-file commit HEAD^^^ | sed -ne \$p) &&
988 test 0 = $(git cat-file commit HEAD^^^ | grep -c ^parent\ )
991 test_expect_success 'rebase -i --root retain root commit author and message' '
995 GIT_AUTHOR_NAME="Twerp Snog" git commit -m "different author" &&
997 FAKE_LINES="2" git rebase -i --root &&
998 git cat-file commit HEAD | grep -q "^author Twerp Snog" &&
999 git cat-file commit HEAD | grep -q "^different author$"
1002 test_expect_success 'rebase -i --root temporary sentinel commit' '
1005 test_must_fail env FAKE_LINES="2" git rebase -i --root &&
1006 git cat-file commit HEAD | grep "^tree 4b825dc642cb" &&
1010 test_expect_success 'rebase -i --root fixup root commit' '
1013 FAKE_LINES="1 fixup 2" git rebase -i --root &&
1014 test A = $(git cat-file commit HEAD | sed -ne \$p) &&
1015 test B = $(git show HEAD:file1) &&
1016 test 0 = $(git cat-file commit HEAD | grep -c ^parent\ )
1019 test_expect_success 'rebase -i --root reword original root commit' '
1020 test_when_finished "test_might_fail git rebase --abort" &&
1021 git checkout -b reword-original-root-branch master &&
1023 FAKE_LINES="reword 1 2" FAKE_COMMIT_MESSAGE="A changed" \
1024 git rebase -i --root &&
1025 git show HEAD^ | grep "A changed" &&
1026 test -z "$(git show -s --format=%p HEAD^)"
1029 test_expect_success 'rebase -i --root reword new root commit' '
1030 test_when_finished "test_might_fail git rebase --abort" &&
1031 git checkout -b reword-now-root-branch master &&
1033 FAKE_LINES="reword 3 1" FAKE_COMMIT_MESSAGE="C changed" \
1034 git rebase -i --root &&
1035 git show HEAD^ | grep "C changed" &&
1036 test -z "$(git show -s --format=%p HEAD^)"
1039 test_expect_success 'rebase -i --root when root has untracked file conflict' '
1040 test_when_finished "reset_rebase" &&
1041 git checkout -b failing-root-pick A &&
1044 git commit -m "remove file 1 add file 2" &&
1047 test_must_fail env FAKE_LINES="1 2" git rebase -i --root &&
1049 git rebase --continue &&
1050 test "$(git log -1 --format=%B)" = "remove file 1 add file 2" &&
1051 test "$(git rev-list --count HEAD)" = 2
1054 test_expect_success 'rebase -i --root reword root when root has untracked file conflict' '
1055 test_when_finished "reset_rebase" &&
1058 test_must_fail env FAKE_LINES="reword 1 2" \
1059 FAKE_COMMIT_MESSAGE="Modified A" git rebase -i --root &&
1061 FAKE_COMMIT_MESSAGE="Reworded A" git rebase --continue &&
1062 test "$(git log -1 --format=%B HEAD^)" = "Reworded A" &&
1063 test "$(git rev-list --count HEAD)" = 2
1066 test_expect_success C_LOCALE_OUTPUT 'rebase --edit-todo does not work on non-interactive rebase' '
1067 git checkout reword-original-root-branch &&
1069 git checkout conflict-branch &&
1071 test_must_fail git rebase --onto HEAD~2 HEAD~ &&
1072 test_must_fail git rebase --edit-todo &&
1076 test_expect_success 'rebase --edit-todo can be used to modify todo' '
1078 git checkout no-conflict-branch^0 &&
1080 FAKE_LINES="edit 1 2 3" git rebase -i HEAD~3 &&
1081 FAKE_LINES="2 1" git rebase --edit-todo &&
1082 git rebase --continue &&
1083 test M = $(git cat-file commit HEAD^ | sed -ne \$p) &&
1084 test L = $(git cat-file commit HEAD | sed -ne \$p)
1087 test_expect_success 'rebase -i produces readable reflog' '
1089 git branch -f branch-reflog-test H &&
1091 git rebase -i --onto I F branch-reflog-test &&
1092 cat >expect <<-\EOF &&
1093 rebase -i (finish): returning to refs/heads/branch-reflog-test
1096 rebase -i (start): checkout I
1098 git reflog -n4 HEAD |
1099 sed "s/[^:]*: //" >actual &&
1100 test_cmp expect actual
1103 test_expect_success 'rebase -i respects core.commentchar' '
1106 test_config core.commentchar "\\" &&
1107 write_script remove-all-but-first.sh <<-\EOF &&
1108 sed -e "2,\$s/^/\\\\/" "$1" >"$1.tmp" &&
1111 test_set_editor "$(pwd)/remove-all-but-first.sh" &&
1113 test B = $(git cat-file commit HEAD^ | sed -ne \$p)
1116 test_expect_success 'rebase -i respects core.commentchar=auto' '
1117 test_config core.commentchar auto &&
1118 write_script copy-edit-script.sh <<-\EOF &&
1121 test_set_editor "$(pwd)/copy-edit-script.sh" &&
1122 test_when_finished "git rebase --abort || :" &&
1123 git rebase -i HEAD^ &&
1124 test -z "$(grep -ve "^#" -e "^\$" -e "^pick" edit-script)"
1127 test_expect_success 'rebase -i, with <onto> and <upstream> specified as :/quuxery' '
1128 test_when_finished "git branch -D torebase" &&
1129 git checkout -b torebase branch1 &&
1130 upstream=$(git rev-parse ":/J") &&
1131 onto=$(git rev-parse ":/A") &&
1132 git rebase --onto $onto $upstream &&
1133 git reset --hard branch1 &&
1134 git rebase --onto ":/A" ":/J" &&
1135 git checkout branch1
1138 test_expect_success 'rebase -i with --strategy and -X' '
1139 git checkout -b conflict-merge-use-theirs conflict-branch &&
1140 git reset --hard HEAD^ &&
1141 echo five >conflict &&
1143 git commit -a -m "one file conflict" &&
1144 EDITOR=true git rebase -i --strategy=recursive -Xours conflict-branch &&
1145 test $(git show conflict-branch:conflict) = $(cat conflict) &&
1146 test $(cat file1) = Z
1149 test_expect_success 'interrupted rebase -i with --strategy and -X' '
1150 git checkout -b conflict-merge-use-theirs-interrupted conflict-branch &&
1151 git reset --hard HEAD^ &&
1153 git add breakpoint &&
1154 git commit -m "breakpoint for interactive mode" &&
1155 echo five >conflict &&
1157 git commit -a -m "one file conflict" &&
1159 FAKE_LINES="edit 1 2" git rebase -i --strategy=recursive -Xours conflict-branch &&
1160 git rebase --continue &&
1161 test $(git show conflict-branch:conflict) = $(cat conflict) &&
1162 test $(cat file1) = Z
1165 test_expect_success 'rebase -i error on commits with \ in message' '
1166 current_head=$(git rev-parse HEAD) &&
1167 test_when_finished "git rebase --abort; git reset --hard $current_head; rm -f error" &&
1168 test_commit TO-REMOVE will-conflict old-content &&
1169 test_commit "\temp" will-conflict new-content dummy &&
1170 test_must_fail env EDITOR=true git rebase -i HEAD^ --onto HEAD^^ 2>error &&
1171 test_expect_code 1 grep " emp" error
1174 test_expect_success 'short SHA-1 setup' '
1175 test_when_finished "git checkout master" &&
1176 git checkout --orphan collide &&
1180 test_commit collide1 collide &&
1181 test_commit --notick collide2 collide &&
1182 test_commit --notick collide3 collide
1186 test_expect_success 'short SHA-1 collide' '
1187 test_when_finished "reset_rebase && git checkout master" &&
1188 git checkout collide &&
1193 FAKE_COMMIT_MESSAGE="collide2 ac4f2ee" \
1194 FAKE_LINES="reword 1 2" git rebase -i HEAD~2
1198 test_expect_success 'respect core.abbrev' '
1199 git config core.abbrev 12 &&
1200 set_cat_todo_editor &&
1201 test_must_fail git rebase -i HEAD~4 >todo-list &&
1202 test 4 = $(grep -c "pick [0-9a-f]\{12,\}" todo-list)
1205 test_expect_success 'todo count' '
1206 write_script dump-raw.sh <<-\EOF &&
1209 test_set_editor "$(pwd)/dump-raw.sh" &&
1210 git rebase -i HEAD~4 >actual &&
1211 test_i18ngrep "^# Rebase ..* onto ..* ([0-9]" actual
1214 test_expect_success 'rebase -i commits that overwrite untracked files (pick)' '
1215 git checkout --force branch2 &&
1218 FAKE_LINES="edit 1 2" git rebase -i A &&
1219 test_cmp_rev HEAD F &&
1220 test_path_is_missing file6 &&
1222 test_must_fail git rebase --continue &&
1223 test_cmp_rev HEAD F &&
1225 git rebase --continue &&
1229 test_expect_success 'rebase -i commits that overwrite untracked files (squash)' '
1230 git checkout --force branch2 &&
1232 git tag original-branch2 &&
1234 FAKE_LINES="edit 1 squash 2" git rebase -i A &&
1235 test_cmp_rev HEAD F &&
1236 test_path_is_missing file6 &&
1238 test_must_fail git rebase --continue &&
1239 test_cmp_rev HEAD F &&
1241 git rebase --continue &&
1242 test $(git cat-file commit HEAD | sed -ne \$p) = I &&
1243 git reset --hard original-branch2
1246 test_expect_success 'rebase -i commits that overwrite untracked files (no ff)' '
1247 git checkout --force branch2 &&
1250 FAKE_LINES="edit 1 2" git rebase -i --no-ff A &&
1251 test $(git cat-file commit HEAD | sed -ne \$p) = F &&
1252 test_path_is_missing file6 &&
1254 test_must_fail git rebase --continue &&
1255 test $(git cat-file commit HEAD | sed -ne \$p) = F &&
1257 git rebase --continue &&
1258 test $(git cat-file commit HEAD | sed -ne \$p) = I
1261 test_expect_success 'rebase --continue removes CHERRY_PICK_HEAD' '
1262 git checkout -b commit-to-skip &&
1265 test_seq 5 | sed "s/$double/&&/" >seq &&
1268 git commit -m seq-$double
1271 git reset --hard HEAD~2 &&
1272 git cherry-pick seq-onto &&
1274 test_must_fail env FAKE_LINES= git rebase -i seq-onto &&
1275 test -d .git/rebase-merge &&
1276 git rebase --continue &&
1277 git diff --exit-code seq-onto &&
1278 test ! -d .git/rebase-merge &&
1279 test ! -f .git/CHERRY_PICK_HEAD
1282 rebase_setup_and_clean () {
1283 test_when_finished "
1284 git checkout master &&
1285 test_might_fail git branch -D $1 &&
1286 test_might_fail git rebase --abort
1288 git checkout -b $1 ${2:-master}
1291 test_expect_success 'drop' '
1292 rebase_setup_and_clean drop-test &&
1294 FAKE_LINES="1 drop 2 3 d 4 5" git rebase -i --root &&
1295 test E = $(git cat-file commit HEAD | sed -ne \$p) &&
1296 test C = $(git cat-file commit HEAD^ | sed -ne \$p) &&
1297 test A = $(git cat-file commit HEAD^^ | sed -ne \$p)
1300 test_expect_success 'rebase -i respects rebase.missingCommitsCheck = ignore' '
1301 test_config rebase.missingCommitsCheck ignore &&
1302 rebase_setup_and_clean missing-commit &&
1304 FAKE_LINES="1 2 3 4" \
1305 git rebase -i --root 2>actual &&
1306 test D = $(git cat-file commit HEAD | sed -ne \$p) &&
1308 "Successfully rebased and updated refs/heads/missing-commit" \
1312 test_expect_success 'rebase -i respects rebase.missingCommitsCheck = warn' '
1313 cat >expect <<-EOF &&
1314 Warning: some commits may have been dropped accidentally.
1315 Dropped commits (newer to older):
1316 - $(git rev-list --pretty=oneline --abbrev-commit -1 master)
1317 To avoid this message, use "drop" to explicitly remove a commit.
1319 test_config rebase.missingCommitsCheck warn &&
1320 rebase_setup_and_clean missing-commit &&
1322 FAKE_LINES="1 2 3 4" \
1323 git rebase -i --root 2>actual.2 &&
1324 head -n4 actual.2 >actual &&
1325 test_i18ncmp expect actual &&
1326 test D = $(git cat-file commit HEAD | sed -ne \$p)
1329 test_expect_success 'rebase -i respects rebase.missingCommitsCheck = error' '
1330 cat >expect <<-EOF &&
1331 Warning: some commits may have been dropped accidentally.
1332 Dropped commits (newer to older):
1333 - $(git rev-list --pretty=oneline --abbrev-commit -1 master)
1334 - $(git rev-list --pretty=oneline --abbrev-commit -1 master~2)
1335 To avoid this message, use "drop" to explicitly remove a commit.
1337 Use '\''git config rebase.missingCommitsCheck'\'' to change the level of warnings.
1338 The possible behaviours are: ignore, warn, error.
1340 You can fix this with '\''git rebase --edit-todo'\'' and then run '\''git rebase --continue'\''.
1341 Or you can abort the rebase with '\''git rebase --abort'\''.
1343 test_config rebase.missingCommitsCheck error &&
1344 rebase_setup_and_clean missing-commit &&
1346 test_must_fail env FAKE_LINES="1 2 4" \
1347 git rebase -i --root 2>actual &&
1348 test_i18ncmp expect actual &&
1349 cp .git/rebase-merge/git-rebase-todo.backup \
1350 .git/rebase-merge/git-rebase-todo &&
1351 FAKE_LINES="1 2 drop 3 4 drop 5" \
1352 git rebase --edit-todo &&
1353 git rebase --continue &&
1354 test D = $(git cat-file commit HEAD | sed -ne \$p) &&
1355 test B = $(git cat-file commit HEAD^ | sed -ne \$p)
1358 test_expect_success 'respects rebase.abbreviateCommands with fixup, squash and exec' '
1359 rebase_setup_and_clean abbrevcmd &&
1360 test_commit "first" file1.txt "first line" first &&
1361 test_commit "second" file1.txt "another line" second &&
1362 test_commit "fixup! first" file2.txt "first line again" first_fixup &&
1363 test_commit "squash! second" file1.txt "another line here" second_squash &&
1364 cat >expected <<-EOF &&
1365 p $(git rev-list --abbrev-commit -1 first) first
1366 f $(git rev-list --abbrev-commit -1 first_fixup) fixup! first
1368 p $(git rev-list --abbrev-commit -1 second) second
1369 s $(git rev-list --abbrev-commit -1 second_squash) squash! second
1372 git checkout abbrevcmd &&
1373 set_cat_todo_editor &&
1374 test_config rebase.abbreviateCommands true &&
1375 test_must_fail git rebase -i --exec "git show HEAD" \
1376 --autosquash master >actual &&
1377 test_cmp expected actual
1380 test_expect_success 'static check of bad command' '
1381 rebase_setup_and_clean bad-cmd &&
1383 test_must_fail env FAKE_LINES="1 2 3 bad 4 5" \
1384 git rebase -i --root 2>actual &&
1385 test_i18ngrep "badcmd $(git rev-list --oneline -1 master~1)" actual &&
1386 test_i18ngrep "You can fix this with .git rebase --edit-todo.." actual &&
1387 FAKE_LINES="1 2 3 drop 4 5" git rebase --edit-todo &&
1388 git rebase --continue &&
1389 test E = $(git cat-file commit HEAD | sed -ne \$p) &&
1390 test C = $(git cat-file commit HEAD^ | sed -ne \$p)
1393 test_expect_success 'tabs and spaces are accepted in the todolist' '
1394 rebase_setup_and_clean indented-comment &&
1395 write_script add-indent.sh <<-\EOF &&
1397 # Turn single spaces into space/tab mix
1398 sed "1s/ / /g; 2s/ / /g; 3s/ / /g" "$1"
1399 printf "\n\t# comment\n #more\n\t # comment\n"
1403 test_set_editor "$(pwd)/add-indent.sh" &&
1404 git rebase -i HEAD^^^ &&
1405 test E = $(git cat-file commit HEAD | sed -ne \$p)
1408 test_expect_success 'static check of bad SHA-1' '
1409 rebase_setup_and_clean bad-sha &&
1411 test_must_fail env FAKE_LINES="1 2 edit fakesha 3 4 5 #" \
1412 git rebase -i --root 2>actual &&
1413 test_i18ngrep "edit XXXXXXX False commit" actual &&
1414 test_i18ngrep "You can fix this with .git rebase --edit-todo.." actual &&
1415 FAKE_LINES="1 2 4 5 6" git rebase --edit-todo &&
1416 git rebase --continue &&
1417 test E = $(git cat-file commit HEAD | sed -ne \$p)
1420 test_expect_success 'editor saves as CR/LF' '
1421 git checkout -b with-crlf &&
1422 write_script add-crs.sh <<-\EOF &&
1423 sed -e "s/\$/Q/" <"$1" | tr Q "\\015" >"$1".new &&
1427 test_set_editor "$(pwd)/add-crs.sh" &&
1433 test_expect_success 'rebase -i --gpg-sign=<key-id>' '
1434 test_when_finished "test_might_fail git rebase --abort" &&
1436 FAKE_LINES="edit 1" git rebase -i --gpg-sign="\"S I Gner\"" HEAD^ \
1438 test_i18ngrep "$SQ-S\"S I Gner\"$SQ" err
1441 test_expect_success 'rebase -i --gpg-sign=<key-id> overrides commit.gpgSign' '
1442 test_when_finished "test_might_fail git rebase --abort" &&
1443 test_config commit.gpgsign true &&
1445 FAKE_LINES="edit 1" git rebase -i --gpg-sign="\"S I Gner\"" HEAD^ \
1447 test_i18ngrep "$SQ-S\"S I Gner\"$SQ" err
1450 test_expect_success 'valid author header after --root swap' '
1451 rebase_setup_and_clean author-header no-conflict-branch &&
1453 git commit --amend --author="Au ${SQ}thor <author@example.com>" --no-edit &&
1454 git cat-file commit HEAD | grep ^author >expected &&
1455 FAKE_LINES="5 1" git rebase -i --root &&
1456 git cat-file commit HEAD^ | grep ^author >actual &&
1457 test_cmp expected actual
1460 test_expect_success 'valid author header when author contains single quote' '
1461 rebase_setup_and_clean author-header no-conflict-branch &&
1463 git commit --amend --author="Au ${SQ}thor <author@example.com>" --no-edit &&
1464 git cat-file commit HEAD | grep ^author >expected &&
1465 FAKE_LINES="2" git rebase -i HEAD~2 &&
1466 git cat-file commit HEAD | grep ^author >actual &&
1467 test_cmp expected actual