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 the exec command' '
79 git checkout master &&
82 FAKE_LINES="1 exec_>touch-one
83 2 exec_>touch-two exec_false exec_>touch-three
84 3 4 exec_>\"touch-file__name_with_spaces\";_>touch-after-semicolon 5" &&
86 test_must_fail git rebase -i A
88 test_path_is_file touch-one &&
89 test_path_is_file touch-two &&
90 test_path_is_missing touch-three " (should have stopped before)" &&
91 test_cmp_rev C HEAD &&
92 git rebase --continue &&
93 test_path_is_file touch-three &&
94 test_path_is_file "touch-file name with spaces" &&
95 test_path_is_file touch-after-semicolon &&
96 test_cmp_rev master HEAD &&
100 test_expect_success
'rebase -i with the exec command runs from tree root' '
101 git checkout master &&
102 mkdir subdir && (cd subdir &&
104 FAKE_LINES="1 exec_>touch-subdir" \
107 test_path_is_file touch-subdir &&
111 test_expect_success
'rebase -i with exec allows git commands in subdirs' '
112 test_when_finished "rm -rf subdir" &&
113 test_when_finished "git rebase --abort ||:" &&
114 git checkout master &&
115 mkdir subdir && (cd subdir &&
117 FAKE_LINES="1 exec_cd_subdir_&&_git_rev-parse_--is-inside-work-tree" \
122 test_expect_success
'rebase -i sets work tree properly' '
123 test_when_finished "rm -rf subdir" &&
124 test_when_finished "test_might_fail git rebase --abort" &&
126 git rebase -x "(cd subdir && git rev-parse --show-toplevel)" HEAD^ \
128 ! grep "/subdir$" actual
131 test_expect_success
'rebase -i with the exec command checks tree cleanness' '
132 git checkout master &&
134 test_must_fail env FAKE_LINES="exec_echo_foo_>file1 1" git rebase -i HEAD^ &&
135 test_cmp_rev master^ HEAD &&
137 git rebase --continue
140 test_expect_success
'rebase -i with exec of inexistent command' '
141 git checkout master &&
142 test_when_finished "git rebase --abort" &&
144 test_must_fail env FAKE_LINES="exec_this-command-does-not-exist 1" \
145 git rebase -i HEAD^ >actual 2>&1 &&
146 ! grep "Maybe git-rebase is broken" actual
149 test_expect_success
'no changes are a nop' '
150 git checkout branch2 &&
153 test "$(git symbolic-ref -q HEAD)" = "refs/heads/branch2" &&
154 test $(git rev-parse I) = $(git rev-parse HEAD)
157 test_expect_success
'test the [branch] option' '
158 git checkout -b dead-end &&
160 git commit -m "stop here" &&
162 git rebase -i F branch2 &&
163 test "$(git symbolic-ref -q HEAD)" = "refs/heads/branch2" &&
164 test $(git rev-parse I) = $(git rev-parse branch2) &&
165 test $(git rev-parse I) = $(git rev-parse HEAD)
168 test_expect_success
'test --onto <branch>' '
169 git checkout -b test-onto branch2 &&
171 git rebase -i --onto branch1 F &&
172 test "$(git symbolic-ref -q HEAD)" = "refs/heads/test-onto" &&
173 test $(git rev-parse HEAD^) = $(git rev-parse branch1) &&
174 test $(git rev-parse I) = $(git rev-parse branch2)
177 test_expect_success
'rebase on top of a non-conflicting commit' '
178 git checkout branch1 &&
179 git tag original-branch1 &&
181 git rebase -i branch2 &&
182 test file6 = $(git diff --name-only original-branch1) &&
183 test "$(git symbolic-ref -q HEAD)" = "refs/heads/branch1" &&
184 test $(git rev-parse I) = $(git rev-parse branch2) &&
185 test $(git rev-parse I) = $(git rev-parse HEAD~2)
188 test_expect_success
'reflog for the branch shows state before rebase' '
189 test $(git rev-parse branch1@{1}) = $(git rev-parse original-branch1)
192 test_expect_success
'reflog for the branch shows correct finish message' '
193 printf "rebase -i (finish): refs/heads/branch1 onto %s\n" \
194 "$(git rev-parse branch2)" >expected &&
195 git log -g --pretty=%gs -1 refs/heads/branch1 >actual &&
196 test_cmp expected actual
199 test_expect_success
'exchange two commits' '
201 FAKE_LINES="2 1" git rebase -i HEAD~2 &&
202 test H = $(git cat-file commit HEAD^ | sed -ne \$p) &&
203 test G = $(git cat-file commit HEAD | sed -ne \$p)
207 diff --git a/file1 b/file1
208 index f70f10e..fd79235 100644
224 test_expect_success
'stop on conflicting pick' '
225 git tag new-branch1 &&
227 test_must_fail git rebase -i master &&
228 test "$(git rev-parse HEAD~3)" = "$(git rev-parse master)" &&
229 test_cmp expect .git/rebase-merge/patch &&
230 test_cmp expect2 file1 &&
231 test "$(git diff --name-status |
232 sed -n -e "/^U/s/^U[^a-z]*//p")" = file1 &&
233 test 4 = $(grep -v "^#" < .git/rebase-merge/done | wc -l) &&
234 test 0 = $(grep -c "^[^#]" < .git/rebase-merge/git-rebase-todo)
237 test_expect_success
'show conflicted patch' '
238 GIT_TRACE=1 git rebase --show-current-patch >/dev/null 2>stderr &&
239 grep "show.*REBASE_HEAD" stderr &&
240 # the original stopped-sha1 is abbreviated
241 stopped_sha1="$(git rev-parse $(cat ".git/rebase-merge/stopped-sha"))" &&
242 test "$(git rev-parse REBASE_HEAD)" = "$stopped_sha1"
245 test_expect_success
'abort' '
246 git rebase --abort &&
247 test $(git rev-parse new-branch1) = $(git rev-parse HEAD) &&
248 test "$(git symbolic-ref -q HEAD)" = "refs/heads/branch1" &&
249 test_path_is_missing .git/rebase-merge
252 test_expect_success
'abort with error when new base cannot be checked out' '
253 git rm --cached file1 &&
254 git commit -m "remove file in base" &&
256 test_must_fail git rebase -i master > output 2>&1 &&
257 test_i18ngrep "The following untracked working tree files would be overwritten by checkout:" \
259 test_i18ngrep "file1" output &&
260 test_path_is_missing .git/rebase-merge &&
261 git reset --hard HEAD^
264 test_expect_success
'retain authorship' '
268 GIT_AUTHOR_NAME="Twerp Snog" git commit -m "different author" &&
271 git rebase -i --onto master HEAD^ &&
272 git show HEAD | grep "^Author: Twerp Snog"
275 test_expect_success
'retain authorship w/ conflicts' '
276 oGIT_AUTHOR_NAME=$GIT_AUTHOR_NAME &&
277 test_when_finished "GIT_AUTHOR_NAME=\$oGIT_AUTHOR_NAME" &&
279 git reset --hard twerp &&
280 test_commit a conflict a conflict-a &&
281 git reset --hard twerp &&
283 GIT_AUTHOR_NAME=AttributeMe &&
284 export GIT_AUTHOR_NAME &&
285 test_commit b conflict b conflict-b &&
286 GIT_AUTHOR_NAME=$oGIT_AUTHOR_NAME &&
289 test_must_fail git rebase -i conflict-a &&
290 echo resolved >conflict &&
292 git rebase --continue &&
293 test $(git rev-parse conflict-a^0) = $(git rev-parse HEAD^) &&
298 test_expect_success
'squash' '
299 git reset --hard twerp &&
302 GIT_AUTHOR_NAME="Nitfol" git commit -m "nitfol" file7 &&
303 echo "******************************" &&
305 FAKE_LINES="1 squash 2" EXPECT_HEADER_COUNT=2 \
306 git rebase -i --onto master HEAD~2 &&
307 test B = $(cat file7) &&
308 test $(git rev-parse HEAD^) = $(git rev-parse master)
311 test_expect_success
'retain authorship when squashing' '
312 git show HEAD | grep "^Author: Twerp Snog"
315 test_expect_success
'-p handles "no changes" gracefully' '
316 HEAD=$(git rev-parse HEAD) &&
318 git rebase -i -p HEAD^ &&
319 git update-index --refresh &&
320 git diff-files --quiet &&
321 git diff-index --quiet --cached HEAD -- &&
322 test $HEAD = $(git rev-parse HEAD)
325 test_expect_failure
'exchange two commits with -p' '
328 FAKE_LINES="2 1" git rebase -i -p HEAD~2 &&
329 test H = $(git cat-file commit HEAD^ | sed -ne \$p) &&
330 test G = $(git cat-file commit HEAD | sed -ne \$p)
333 test_expect_success
'preserve merges with -p' '
334 git checkout -b to-be-preserved master^ &&
335 : > unrelated-file &&
336 git add unrelated-file &&
338 git commit -m "unrelated" &&
339 git checkout -b another-branch master &&
342 git commit -m J file1 &&
344 git merge to-be-preserved &&
347 git commit -m K file1 &&
350 git commit -m L1 file1 &&
351 git checkout HEAD^ &&
352 echo 1 > unrelated-file &&
354 git commit -m L2 unrelated-file &&
356 git merge another-branch &&
359 git commit -m M file1 &&
360 git checkout -b to-be-rebased &&
363 git rebase -i -p --onto branch1 master &&
364 git update-index --refresh &&
365 git diff-files --quiet &&
366 git diff-index --quiet --cached HEAD -- &&
367 test $(git rev-parse HEAD~6) = $(git rev-parse branch1) &&
368 test $(git rev-parse HEAD~4^2) = $(git rev-parse to-be-preserved) &&
369 test $(git rev-parse HEAD^^2^) = $(git rev-parse HEAD^^^) &&
370 test $(git show HEAD~5:file1) = B &&
371 test $(git show HEAD~3:file1) = C &&
372 test $(git show HEAD:file1) = E &&
373 test $(git show HEAD:unrelated-file) = 1
376 test_expect_success
'edit ancestor with -p' '
378 FAKE_LINES="1 2 edit 3 4" git rebase -i -p HEAD~3 &&
379 echo 2 > unrelated-file &&
381 git commit -m L2-modified --amend unrelated-file &&
382 git rebase --continue &&
383 git update-index --refresh &&
384 git diff-files --quiet &&
385 git diff-index --quiet --cached HEAD -- &&
386 test $(git show HEAD:unrelated-file) = 2
389 test_expect_success
'--continue tries to commit' '
392 test_must_fail git rebase -i --onto new-branch1 HEAD^ &&
393 echo resolved > file1 &&
395 FAKE_COMMIT_MESSAGE="chouette!" git rebase --continue &&
396 test $(git rev-parse HEAD^) = $(git rev-parse new-branch1) &&
397 git show HEAD | grep chouette
400 test_expect_success
'verbose flag is heeded, even after --continue' '
401 git reset --hard master@{1} &&
404 test_must_fail git rebase -v -i --onto new-branch1 HEAD^ &&
405 echo resolved > file1 &&
407 git rebase --continue > output &&
408 grep "^ file1 | 2 +-$" output
411 test_expect_success C_LOCALE_OUTPUT
'multi-squash only fires up editor once' '
412 base=$(git rev-parse HEAD~4) &&
414 FAKE_COMMIT_AMEND="ONCE" FAKE_LINES="1 squash 2 squash 3 squash 4" \
415 EXPECT_HEADER_COUNT=4 \
416 git rebase -i $base &&
417 test $base = $(git rev-parse HEAD^) &&
418 test 1 = $(git show | grep ONCE | wc -l)
421 test_expect_success C_LOCALE_OUTPUT
'multi-fixup does not fire up editor' '
422 git checkout -b multi-fixup E &&
423 base=$(git rev-parse HEAD~4) &&
425 FAKE_COMMIT_AMEND="NEVER" FAKE_LINES="1 fixup 2 fixup 3 fixup 4" \
426 git rebase -i $base &&
427 test $base = $(git rev-parse HEAD^) &&
428 test 0 = $(git show | grep NEVER | wc -l) &&
429 git checkout to-be-rebased &&
430 git branch -D multi-fixup
433 test_expect_success
'commit message used after conflict' '
434 git checkout -b conflict-fixup conflict-branch &&
435 base=$(git rev-parse HEAD~4) &&
437 test_must_fail env FAKE_LINES="1 fixup 3 fixup 4" git rebase -i $base &&
438 echo three > conflict &&
440 FAKE_COMMIT_AMEND="ONCE" EXPECT_HEADER_COUNT=2 \
441 git rebase --continue &&
442 test $base = $(git rev-parse HEAD^) &&
443 test 1 = $(git show | grep ONCE | wc -l) &&
444 git checkout to-be-rebased &&
445 git branch -D conflict-fixup
448 test_expect_success
'commit message retained after conflict' '
449 git checkout -b conflict-squash conflict-branch &&
450 base=$(git rev-parse HEAD~4) &&
452 test_must_fail env FAKE_LINES="1 fixup 3 squash 4" git rebase -i $base &&
453 echo three > conflict &&
455 FAKE_COMMIT_AMEND="TWICE" EXPECT_HEADER_COUNT=2 \
456 git rebase --continue &&
457 test $base = $(git rev-parse HEAD^) &&
458 test 2 = $(git show | grep TWICE | wc -l) &&
459 git checkout to-be-rebased &&
460 git branch -D conflict-squash
463 cat > expect-squash-fixup
<< EOF
471 test_expect_success C_LOCALE_OUTPUT
'squash and fixup generate correct log messages' '
472 git checkout -b squash-fixup E &&
473 base=$(git rev-parse HEAD~4) &&
475 FAKE_COMMIT_AMEND="ONCE" FAKE_LINES="1 fixup 2 squash 3 fixup 4" \
476 EXPECT_HEADER_COUNT=4 \
477 git rebase -i $base &&
478 git cat-file commit HEAD | sed -e 1,/^\$/d > actual-squash-fixup &&
479 test_cmp expect-squash-fixup actual-squash-fixup &&
480 git cat-file commit HEAD@{2} |
481 grep "^# This is a combination of 3 commits\." &&
482 git cat-file commit HEAD@{3} |
483 grep "^# This is a combination of 2 commits\." &&
484 git checkout to-be-rebased &&
485 git branch -D squash-fixup
488 test_expect_success C_LOCALE_OUTPUT
'squash ignores comments' '
489 git checkout -b skip-comments E &&
490 base=$(git rev-parse HEAD~4) &&
492 FAKE_COMMIT_AMEND="ONCE" FAKE_LINES="# 1 # squash 2 # squash 3 # squash 4 #" \
493 EXPECT_HEADER_COUNT=4 \
494 git rebase -i $base &&
495 test $base = $(git rev-parse HEAD^) &&
496 test 1 = $(git show | grep ONCE | wc -l) &&
497 git checkout to-be-rebased &&
498 git branch -D skip-comments
501 test_expect_success C_LOCALE_OUTPUT
'squash ignores blank lines' '
502 git checkout -b skip-blank-lines E &&
503 base=$(git rev-parse HEAD~4) &&
505 FAKE_COMMIT_AMEND="ONCE" FAKE_LINES="> 1 > squash 2 > squash 3 > squash 4 >" \
506 EXPECT_HEADER_COUNT=4 \
507 git rebase -i $base &&
508 test $base = $(git rev-parse HEAD^) &&
509 test 1 = $(git show | grep ONCE | wc -l) &&
510 git checkout to-be-rebased &&
511 git branch -D skip-blank-lines
514 test_expect_success
'squash works as expected' '
515 git checkout -b squash-works no-conflict-branch &&
516 one=$(git rev-parse HEAD~3) &&
518 FAKE_LINES="1 squash 3 2" EXPECT_HEADER_COUNT=2 \
519 git rebase -i HEAD~3 &&
520 test $one = $(git rev-parse HEAD~2)
523 test_expect_success
'interrupted squash works as expected' '
524 git checkout -b interrupted-squash conflict-branch &&
525 one=$(git rev-parse HEAD~3) &&
527 test_must_fail env FAKE_LINES="1 squash 3 2" git rebase -i HEAD~3 &&
528 test_write_lines one two four > conflict &&
530 test_must_fail git rebase --continue &&
531 echo resolved > conflict &&
533 git rebase --continue &&
534 test $one = $(git rev-parse HEAD~2)
537 test_expect_success
'interrupted squash works as expected (case 2)' '
538 git checkout -b interrupted-squash2 conflict-branch &&
539 one=$(git rev-parse HEAD~3) &&
541 test_must_fail env FAKE_LINES="3 squash 1 2" git rebase -i HEAD~3 &&
542 test_write_lines one four > conflict &&
544 test_must_fail git rebase --continue &&
545 test_write_lines one two four > conflict &&
547 test_must_fail git rebase --continue &&
548 echo resolved > conflict &&
550 git rebase --continue &&
551 test $one = $(git rev-parse HEAD~2)
554 test_expect_success
'--continue tries to commit, even for "edit"' '
555 echo unrelated > file7 &&
558 git commit -m "unrelated change" &&
559 parent=$(git rev-parse HEAD^) &&
562 FAKE_LINES="edit 1" git rebase -i HEAD^ &&
563 echo edited > file7 &&
565 FAKE_COMMIT_MESSAGE="chouette!" git rebase --continue &&
566 test edited = $(git show HEAD:file7) &&
567 git show HEAD | grep chouette &&
568 test $parent = $(git rev-parse HEAD^)
571 test_expect_success
'aborted --continue does not squash commits after "edit"' '
572 old=$(git rev-parse HEAD) &&
575 FAKE_LINES="edit 1" git rebase -i HEAD^ &&
576 echo "edited again" > file7 &&
578 test_must_fail env FAKE_COMMIT_MESSAGE=" " git rebase --continue &&
579 test $old = $(git rev-parse HEAD) &&
583 test_expect_success
'auto-amend only edited commits after "edit"' '
586 FAKE_LINES="edit 1" git rebase -i HEAD^ &&
587 echo "edited again" > file7 &&
589 FAKE_COMMIT_MESSAGE="edited file7 again" git commit &&
590 echo "and again" > file7 &&
593 test_must_fail env FAKE_COMMIT_MESSAGE="and again" git rebase --continue &&
597 test_expect_success
'clean error after failed "exec"' '
599 test_when_finished "git rebase --abort || :" &&
601 test_must_fail env FAKE_LINES="1 exec_false" git rebase -i HEAD^ &&
602 echo "edited again" > file7 &&
604 test_must_fail git rebase --continue 2>error &&
605 test_i18ngrep "you have staged changes in your working tree" error
608 test_expect_success
'rebase a detached HEAD' '
609 grandparent=$(git rev-parse HEAD~2) &&
610 git checkout $(git rev-parse HEAD) &&
613 FAKE_LINES="2 1" git rebase -i HEAD~2 &&
614 test $grandparent = $(git rev-parse HEAD~2)
617 test_expect_success
'rebase a commit violating pre-commit' '
619 mkdir -p .git/hooks &&
620 write_script .git/hooks/pre-commit <<-\EOF &&
621 test -z "$(git diff --cached --check)"
623 echo "monde! " >> file1 &&
625 test_must_fail git commit -m doesnt-verify file1 &&
626 git commit -m doesnt-verify --no-verify file1 &&
629 FAKE_LINES=2 git rebase -i HEAD~2
633 test_expect_success
'rebase with a file named HEAD in worktree' '
637 git checkout -b branch3 A &&
640 GIT_AUTHOR_NAME="Squashed Away" &&
641 export GIT_AUTHOR_NAME &&
644 git commit -m "Add head" &&
647 git commit -m "Add body"
651 FAKE_LINES="1 squash 2" git rebase -i to-be-rebased &&
652 test "$(git show -s --pretty=format:%an)" = "Squashed Away"
656 test_expect_success
'do "noop" when there is nothing to cherry-pick' '
658 git checkout -b branch4 HEAD &&
659 GIT_EDITOR=: git commit --amend \
660 --author="Somebody else <somebody@else.com>" &&
661 test $(git rev-parse branch3) != $(git rev-parse branch4) &&
663 git rebase -i branch3 &&
664 test $(git rev-parse branch3) = $(git rev-parse branch4)
668 test_expect_success
'submodule rebase setup' '
672 cd sub && git init && >elif &&
673 git add elif && git commit -m "submodule initial"
678 git commit -m "One" &&
681 git commit -a -m "Two" &&
683 cd sub && echo 3 >elif &&
684 git commit -a -m "submodule second"
688 git commit -a -m "Three changes submodule"
691 test_expect_success
'submodule rebase -i' '
693 FAKE_LINES="1 squash 2 3" git rebase -i A
696 test_expect_success
'submodule conflict setup' '
697 git tag submodule-base &&
698 git checkout HEAD^ &&
700 cd sub && git checkout HEAD^ && echo 4 >elif &&
701 git add elif && git commit -m "submodule conflict"
705 git commit -m "Conflict in submodule" &&
706 git tag submodule-topic
709 test_expect_success
'rebase -i continue with only submodule staged' '
711 test_must_fail git rebase -i submodule-base &&
713 git rebase --continue &&
714 test $(git rev-parse submodule-base) != $(git rev-parse HEAD)
717 test_expect_success
'rebase -i continue with unstaged submodule' '
718 git checkout submodule-topic &&
721 test_must_fail git rebase -i submodule-base &&
723 git rebase --continue &&
724 test $(git rev-parse submodule-base) = $(git rev-parse HEAD)
727 test_expect_success
'avoid unnecessary reset' '
728 git checkout master &&
730 test-tool chmtime =123456789 file3 &&
731 git update-index --refresh &&
732 HEAD=$(git rev-parse HEAD) &&
734 git rebase -i HEAD~4 &&
735 test $HEAD = $(git rev-parse HEAD) &&
736 MTIME=$(test-tool chmtime --get file3) &&
737 test 123456789 = $MTIME
740 test_expect_success
'reword' '
741 git checkout -b reword-branch master &&
743 FAKE_LINES="1 2 3 reword 4" FAKE_COMMIT_MESSAGE="E changed" git rebase -i A &&
744 git show HEAD | grep "E changed" &&
745 test $(git rev-parse master) != $(git rev-parse HEAD) &&
746 test $(git rev-parse master^) = $(git rev-parse HEAD^) &&
747 FAKE_LINES="1 2 reword 3 4" FAKE_COMMIT_MESSAGE="D changed" git rebase -i A &&
748 git show HEAD^ | grep "D changed" &&
749 FAKE_LINES="reword 1 2 3 4" FAKE_COMMIT_MESSAGE="B changed" git rebase -i A &&
750 git show HEAD~3 | grep "B changed" &&
751 FAKE_LINES="1 reword 2 3 4" FAKE_COMMIT_MESSAGE="C changed" git rebase -i A &&
752 git show HEAD~2 | grep "C changed"
755 test_expect_success
'rebase -i can copy notes' '
756 git config notes.rewrite.rebase true &&
757 git config notes.rewriteRef "refs/notes/*" &&
761 git notes add -m"a note" n3 &&
763 git rebase -i --onto n1 n2 &&
764 test "a note" = "$(git notes show HEAD)"
773 test_expect_success
'rebase -i can copy notes over a fixup' '
774 git reset --hard n3 &&
775 git notes add -m"an earlier note" n2 &&
777 GIT_NOTES_REWRITE_MODE=concatenate FAKE_LINES="1 fixup 2" git rebase -i n1 &&
778 git notes show > output &&
779 test_cmp expect output
782 test_expect_success
'rebase while detaching HEAD' '
783 git symbolic-ref HEAD &&
784 grandparent=$(git rev-parse HEAD~2) &&
787 FAKE_LINES="2 1" git rebase -i HEAD~2 HEAD^0 &&
788 test $grandparent = $(git rev-parse HEAD~2) &&
789 test_must_fail git symbolic-ref HEAD
792 test_tick
# Ensure that the rebased commits get a different timestamp.
793 test_expect_success
'always cherry-pick with --no-ff' '
794 git checkout no-ff-branch &&
795 git tag original-no-ff-branch &&
797 git rebase -i --no-ff A &&
800 test ! $(git rev-parse HEAD~$p) = $(git rev-parse original-no-ff-branch~$p) &&
801 git diff HEAD~$p original-no-ff-branch~$p > out &&
802 test_must_be_empty out
804 test $(git rev-parse HEAD~3) = $(git rev-parse original-no-ff-branch~3) &&
805 git diff HEAD~3 original-no-ff-branch~3 > out &&
806 test_must_be_empty out
809 test_expect_success
'set up commits with funny messages' '
810 git checkout -b funny A &&
813 git commit -a -m "end with slash\\" &&
816 git commit -a -m "something (\000) that looks like octal" &&
819 git commit -a -m "something (\n) that looks like a newline" &&
822 git commit -a -m "another commit"
825 test_expect_success
'rebase-i history with funny messages' '
826 git rev-list A..funny >expect &&
829 FAKE_LINES="1 2 3 4" git rebase -i A &&
830 git rev-list A.. >actual &&
831 test_cmp expect actual
834 test_expect_success
'prepare for rebase -i --exec' '
835 git checkout master &&
836 git checkout -b execute &&
837 test_commit one_exec main.txt one_exec &&
838 test_commit two_exec main.txt two_exec &&
839 test_commit three_exec main.txt three_exec
842 test_expect_success
'running "git rebase -i --exec git show HEAD"' '
844 git rebase -i --exec "git show HEAD" HEAD~2 >actual &&
846 FAKE_LINES="1 exec_git_show_HEAD 2 exec_git_show_HEAD" &&
848 git rebase -i HEAD~2 >expect
850 sed -e "1,9d" expect >expected &&
851 test_cmp expected actual
854 test_expect_success
'running "git rebase --exec git show HEAD -i"' '
855 git reset --hard execute &&
857 git rebase --exec "git show HEAD" -i HEAD~2 >actual &&
859 FAKE_LINES="1 exec_git_show_HEAD 2 exec_git_show_HEAD" &&
861 git rebase -i HEAD~2 >expect
863 sed -e "1,9d" expect >expected &&
864 test_cmp expected actual
867 test_expect_success
'running "git rebase -ix git show HEAD"' '
868 git reset --hard execute &&
870 git rebase -ix "git show HEAD" HEAD~2 >actual &&
872 FAKE_LINES="1 exec_git_show_HEAD 2 exec_git_show_HEAD" &&
874 git rebase -i HEAD~2 >expect
876 sed -e "1,9d" expect >expected &&
877 test_cmp expected actual
881 test_expect_success
'rebase -ix with several <CMD>' '
882 git reset --hard execute &&
884 git rebase -ix "git show HEAD; pwd" HEAD~2 >actual &&
886 FAKE_LINES="1 exec_git_show_HEAD;_pwd 2 exec_git_show_HEAD;_pwd" &&
888 git rebase -i HEAD~2 >expect
890 sed -e "1,9d" expect >expected &&
891 test_cmp expected actual
894 test_expect_success
'rebase -ix with several instances of --exec' '
895 git reset --hard execute &&
897 git rebase -i --exec "git show HEAD" --exec "pwd" HEAD~2 >actual &&
899 FAKE_LINES="1 exec_git_show_HEAD exec_pwd 2
900 exec_git_show_HEAD exec_pwd" &&
902 git rebase -i HEAD~2 >expect
904 sed -e "1,11d" expect >expected &&
905 test_cmp expected actual
908 test_expect_success C_LOCALE_OUTPUT
'rebase -ix with --autosquash' '
909 git reset --hard execute &&
910 git checkout -b autosquash &&
911 echo second >second.txt &&
912 git add second.txt &&
913 git commit -m "fixup! two_exec" &&
916 git commit -m "fixup! two_exec" &&
919 git checkout -b autosquash_actual &&
920 git rebase -i --exec "git show HEAD" --autosquash HEAD~4 >actual
922 git checkout autosquash &&
924 git checkout -b autosquash_expected &&
925 FAKE_LINES="1 fixup 3 fixup 4 exec_git_show_HEAD 2 exec_git_show_HEAD" &&
927 git rebase -i HEAD~4 >expect
929 sed -e "1,13d" expect >expected &&
930 test_cmp expected actual
933 test_expect_success
'rebase --exec works without -i ' '
934 git reset --hard execute &&
935 rm -rf exec_output &&
936 EDITOR="echo >invoked_editor" git rebase --exec "echo a line >>exec_output" HEAD~2 2>actual &&
937 test_i18ngrep "Successfully rebased and updated" actual &&
938 test_line_count = 2 exec_output &&
939 test_path_is_missing invoked_editor
942 test_expect_success
'rebase -i --exec without <CMD>' '
943 git reset --hard execute &&
945 test_must_fail git rebase -i --exec 2>actual &&
946 test_i18ngrep "requires a value" actual &&
950 test_expect_success
'rebase -i --root re-order and drop commits' '
953 FAKE_LINES="3 1 2 5" git rebase -i --root &&
954 test E = $(git cat-file commit HEAD | sed -ne \$p) &&
955 test B = $(git cat-file commit HEAD^ | sed -ne \$p) &&
956 test A = $(git cat-file commit HEAD^^ | sed -ne \$p) &&
957 test C = $(git cat-file commit HEAD^^^ | sed -ne \$p) &&
958 test 0 = $(git cat-file commit HEAD^^^ | grep -c ^parent\ )
961 test_expect_success
'rebase -i --root retain root commit author and message' '
965 GIT_AUTHOR_NAME="Twerp Snog" git commit -m "different author" &&
967 FAKE_LINES="2" git rebase -i --root &&
968 git cat-file commit HEAD | grep -q "^author Twerp Snog" &&
969 git cat-file commit HEAD | grep -q "^different author$"
972 test_expect_success
'rebase -i --root temporary sentinel commit' '
975 test_must_fail env FAKE_LINES="2" git rebase -i --root &&
976 git cat-file commit HEAD | grep "^tree 4b825dc642cb" &&
980 test_expect_success
'rebase -i --root fixup root commit' '
983 FAKE_LINES="1 fixup 2" git rebase -i --root &&
984 test A = $(git cat-file commit HEAD | sed -ne \$p) &&
985 test B = $(git show HEAD:file1) &&
986 test 0 = $(git cat-file commit HEAD | grep -c ^parent\ )
989 test_expect_success
'rebase -i --root reword root commit' '
990 test_when_finished "test_might_fail git rebase --abort" &&
991 git checkout -b reword-root-branch master &&
993 FAKE_LINES="reword 1 2" FAKE_COMMIT_MESSAGE="A changed" \
994 git rebase -i --root &&
995 git show HEAD^ | grep "A changed" &&
996 test -z "$(git show -s --format=%p HEAD^)"
999 test_expect_success
'rebase -i --root when root has untracked file confilct' '
1000 test_when_finished "reset_rebase" &&
1001 git checkout -b failing-root-pick A &&
1004 git commit -m "remove file 1 add file 2" &&
1007 test_must_fail env FAKE_LINES="1 2" git rebase -i --root &&
1009 git rebase --continue &&
1010 test "$(git log -1 --format=%B)" = "remove file 1 add file 2" &&
1011 test "$(git rev-list --count HEAD)" = 2
1014 test_expect_success
'rebase -i --root reword root when root has untracked file conflict' '
1015 test_when_finished "reset_rebase" &&
1018 test_must_fail env FAKE_LINES="reword 1 2" \
1019 FAKE_COMMIT_MESSAGE="Modified A" git rebase -i --root &&
1021 FAKE_COMMIT_MESSAGE="Reworded A" git rebase --continue &&
1022 test "$(git log -1 --format=%B HEAD^)" = "Reworded A" &&
1023 test "$(git rev-list --count HEAD)" = 2
1026 test_expect_success C_LOCALE_OUTPUT
'rebase --edit-todo does not work on non-interactive rebase' '
1027 git checkout reword-root-branch &&
1029 git checkout conflict-branch &&
1031 test_must_fail git rebase --onto HEAD~2 HEAD~ &&
1032 test_must_fail git rebase --edit-todo &&
1036 test_expect_success
'rebase --edit-todo can be used to modify todo' '
1038 git checkout no-conflict-branch^0 &&
1040 FAKE_LINES="edit 1 2 3" git rebase -i HEAD~3 &&
1041 FAKE_LINES="2 1" git rebase --edit-todo &&
1042 git rebase --continue &&
1043 test M = $(git cat-file commit HEAD^ | sed -ne \$p) &&
1044 test L = $(git cat-file commit HEAD | sed -ne \$p)
1047 test_expect_success
'rebase -i produces readable reflog' '
1049 git branch -f branch-reflog-test H &&
1051 git rebase -i --onto I F branch-reflog-test &&
1052 cat >expect <<-\EOF &&
1053 rebase -i (finish): returning to refs/heads/branch-reflog-test
1056 rebase -i (start): checkout I
1058 git reflog -n4 HEAD |
1059 sed "s/[^:]*: //" >actual &&
1060 test_cmp expect actual
1063 test_expect_success
'rebase -i respects core.commentchar' '
1066 test_config core.commentchar "\\" &&
1067 write_script remove-all-but-first.sh <<-\EOF &&
1068 sed -e "2,\$s/^/\\\\/" "$1" >"$1.tmp" &&
1071 test_set_editor "$(pwd)/remove-all-but-first.sh" &&
1073 test B = $(git cat-file commit HEAD^ | sed -ne \$p)
1076 test_expect_success
'rebase -i respects core.commentchar=auto' '
1077 test_config core.commentchar auto &&
1078 write_script copy-edit-script.sh <<-\EOF &&
1081 test_set_editor "$(pwd)/copy-edit-script.sh" &&
1082 test_when_finished "git rebase --abort || :" &&
1083 git rebase -i HEAD^ &&
1084 test -z "$(grep -ve "^#" -e "^\$" -e "^pick" edit-script)"
1087 test_expect_success
'rebase -i, with <onto> and <upstream> specified as :/quuxery' '
1088 test_when_finished "git branch -D torebase" &&
1089 git checkout -b torebase branch1 &&
1090 upstream=$(git rev-parse ":/J") &&
1091 onto=$(git rev-parse ":/A") &&
1092 git rebase --onto $onto $upstream &&
1093 git reset --hard branch1 &&
1094 git rebase --onto ":/A" ":/J" &&
1095 git checkout branch1
1098 test_expect_success
'rebase -i with --strategy and -X' '
1099 git checkout -b conflict-merge-use-theirs conflict-branch &&
1100 git reset --hard HEAD^ &&
1101 echo five >conflict &&
1103 git commit -a -m "one file conflict" &&
1104 EDITOR=true git rebase -i --strategy=recursive -Xours conflict-branch &&
1105 test $(git show conflict-branch:conflict) = $(cat conflict) &&
1106 test $(cat file1) = Z
1109 test_expect_success
'interrupted rebase -i with --strategy and -X' '
1110 git checkout -b conflict-merge-use-theirs-interrupted conflict-branch &&
1111 git reset --hard HEAD^ &&
1113 git add breakpoint &&
1114 git commit -m "breakpoint for interactive mode" &&
1115 echo five >conflict &&
1117 git commit -a -m "one file conflict" &&
1119 FAKE_LINES="edit 1 2" git rebase -i --strategy=recursive -Xours conflict-branch &&
1120 git rebase --continue &&
1121 test $(git show conflict-branch:conflict) = $(cat conflict) &&
1122 test $(cat file1) = Z
1125 test_expect_success
'rebase -i error on commits with \ in message' '
1126 current_head=$(git rev-parse HEAD) &&
1127 test_when_finished "git rebase --abort; git reset --hard $current_head; rm -f error" &&
1128 test_commit TO-REMOVE will-conflict old-content &&
1129 test_commit "\temp" will-conflict new-content dummy &&
1130 test_must_fail env EDITOR=true git rebase -i HEAD^ --onto HEAD^^ 2>error &&
1131 test_expect_code 1 grep " emp" error
1134 test_expect_success
'short SHA-1 setup' '
1135 test_when_finished "git checkout master" &&
1136 git checkout --orphan collide &&
1140 test_commit collide1 collide &&
1141 test_commit --notick collide2 collide &&
1142 test_commit --notick collide3 collide
1146 test_expect_success
'short SHA-1 collide' '
1147 test_when_finished "reset_rebase && git checkout master" &&
1148 git checkout collide &&
1153 FAKE_COMMIT_MESSAGE="collide2 ac4f2ee" \
1154 FAKE_LINES="reword 1 2" git rebase -i HEAD~2
1158 test_expect_success
'respect core.abbrev' '
1159 git config core.abbrev 12 &&
1160 set_cat_todo_editor &&
1161 test_must_fail git rebase -i HEAD~4 >todo-list &&
1162 test 4 = $(grep -c "pick [0-9a-f]\{12,\}" todo-list)
1165 test_expect_success
'todo count' '
1166 write_script dump-raw.sh <<-\EOF &&
1169 test_set_editor "$(pwd)/dump-raw.sh" &&
1170 git rebase -i HEAD~4 >actual &&
1171 test_i18ngrep "^# Rebase ..* onto ..* ([0-9]" actual
1174 test_expect_success
'rebase -i commits that overwrite untracked files (pick)' '
1175 git checkout --force branch2 &&
1178 FAKE_LINES="edit 1 2" git rebase -i A &&
1179 test_cmp_rev HEAD F &&
1180 test_path_is_missing file6 &&
1182 test_must_fail git rebase --continue &&
1183 test_cmp_rev HEAD F &&
1185 git rebase --continue &&
1189 test_expect_success
'rebase -i commits that overwrite untracked files (squash)' '
1190 git checkout --force branch2 &&
1192 git tag original-branch2 &&
1194 FAKE_LINES="edit 1 squash 2" git rebase -i A &&
1195 test_cmp_rev HEAD F &&
1196 test_path_is_missing file6 &&
1198 test_must_fail git rebase --continue &&
1199 test_cmp_rev HEAD F &&
1201 git rebase --continue &&
1202 test $(git cat-file commit HEAD | sed -ne \$p) = I &&
1203 git reset --hard original-branch2
1206 test_expect_success
'rebase -i commits that overwrite untracked files (no ff)' '
1207 git checkout --force branch2 &&
1210 FAKE_LINES="edit 1 2" git rebase -i --no-ff A &&
1211 test $(git cat-file commit HEAD | sed -ne \$p) = F &&
1212 test_path_is_missing file6 &&
1214 test_must_fail git rebase --continue &&
1215 test $(git cat-file commit HEAD | sed -ne \$p) = F &&
1217 git rebase --continue &&
1218 test $(git cat-file commit HEAD | sed -ne \$p) = I
1221 test_expect_success
'rebase --continue removes CHERRY_PICK_HEAD' '
1222 git checkout -b commit-to-skip &&
1225 test_seq 5 | sed "s/$double/&&/" >seq &&
1228 git commit -m seq-$double
1231 git reset --hard HEAD~2 &&
1232 git cherry-pick seq-onto &&
1234 test_must_fail env FAKE_LINES= git rebase -i seq-onto &&
1235 test -d .git/rebase-merge &&
1236 git rebase --continue &&
1237 git diff --exit-code seq-onto &&
1238 test ! -d .git/rebase-merge &&
1239 test ! -f .git/CHERRY_PICK_HEAD
1242 rebase_setup_and_clean
() {
1243 test_when_finished
"
1244 git checkout master &&
1245 test_might_fail git branch -D $1 &&
1246 test_might_fail git rebase --abort
1248 git checkout
-b $1 ${2:-master}
1251 test_expect_success
'drop' '
1252 rebase_setup_and_clean drop-test &&
1254 FAKE_LINES="1 drop 2 3 drop 4 5" git rebase -i --root &&
1255 test E = $(git cat-file commit HEAD | sed -ne \$p) &&
1256 test C = $(git cat-file commit HEAD^ | sed -ne \$p) &&
1257 test A = $(git cat-file commit HEAD^^ | sed -ne \$p)
1260 test_expect_success
'rebase -i respects rebase.missingCommitsCheck = ignore' '
1261 test_config rebase.missingCommitsCheck ignore &&
1262 rebase_setup_and_clean missing-commit &&
1264 FAKE_LINES="1 2 3 4" \
1265 git rebase -i --root 2>actual &&
1266 test D = $(git cat-file commit HEAD | sed -ne \$p) &&
1268 "Successfully rebased and updated refs/heads/missing-commit" \
1273 Warning: some commits may have been dropped accidentally.
1274 Dropped commits (newer to older):
1275 - $(git rev-list --pretty=oneline --abbrev-commit -1 master)
1276 To avoid this message, use "drop" to explicitly remove a commit.
1278 Use 'git config rebase.missingCommitsCheck' to change the level of warnings.
1279 The possible behaviours are: ignore, warn, error.
1285 Successfully rebased and updated refs/heads/missing-commit.
1292 test_expect_success
'rebase -i respects rebase.missingCommitsCheck = warn' '
1293 test_config rebase.missingCommitsCheck warn &&
1294 rebase_setup_and_clean missing-commit &&
1296 FAKE_LINES="1 2 3 4" \
1297 git rebase -i --root 2>actual.2 &&
1298 cr_to_nl <actual.2 >actual &&
1299 test_i18ncmp expect actual &&
1300 test D = $(git cat-file commit HEAD | sed -ne \$p)
1304 Warning: some commits may have been dropped accidentally.
1305 Dropped commits (newer to older):
1306 - $(git rev-list --pretty=oneline --abbrev-commit -1 master)
1307 - $(git rev-list --pretty=oneline --abbrev-commit -1 master~2)
1308 To avoid this message, use "drop" to explicitly remove a commit.
1310 Use 'git config rebase.missingCommitsCheck' to change the level of warnings.
1311 The possible behaviours are: ignore, warn, error.
1313 You can fix this with 'git rebase --edit-todo' and then run 'git rebase --continue'.
1314 Or you can abort the rebase with 'git rebase --abort'.
1317 test_expect_success
'rebase -i respects rebase.missingCommitsCheck = error' '
1318 test_config rebase.missingCommitsCheck error &&
1319 rebase_setup_and_clean missing-commit &&
1321 test_must_fail env FAKE_LINES="1 2 4" \
1322 git rebase -i --root 2>actual &&
1323 test_i18ncmp expect actual &&
1324 cp .git/rebase-merge/git-rebase-todo.backup \
1325 .git/rebase-merge/git-rebase-todo &&
1326 FAKE_LINES="1 2 drop 3 4 drop 5" \
1327 git rebase --edit-todo &&
1328 git rebase --continue &&
1329 test D = $(git cat-file commit HEAD | sed -ne \$p) &&
1330 test B = $(git cat-file commit HEAD^ | sed -ne \$p)
1333 test_expect_success
'respects rebase.abbreviateCommands with fixup, squash and exec' '
1334 rebase_setup_and_clean abbrevcmd &&
1335 test_commit "first" file1.txt "first line" first &&
1336 test_commit "second" file1.txt "another line" second &&
1337 test_commit "fixup! first" file2.txt "first line again" first_fixup &&
1338 test_commit "squash! second" file1.txt "another line here" second_squash &&
1339 cat >expected <<-EOF &&
1340 p $(git rev-list --abbrev-commit -1 first) first
1341 f $(git rev-list --abbrev-commit -1 first_fixup) fixup! first
1343 p $(git rev-list --abbrev-commit -1 second) second
1344 s $(git rev-list --abbrev-commit -1 second_squash) squash! second
1347 git checkout abbrevcmd &&
1348 set_cat_todo_editor &&
1349 test_config rebase.abbreviateCommands true &&
1350 test_must_fail git rebase -i --exec "git show HEAD" \
1351 --autosquash master >actual &&
1352 test_cmp expected actual
1355 test_expect_success
'static check of bad command' '
1356 rebase_setup_and_clean bad-cmd &&
1358 test_must_fail env FAKE_LINES="1 2 3 bad 4 5" \
1359 git rebase -i --root 2>actual &&
1360 test_i18ngrep "badcmd $(git rev-list --oneline -1 master~1)" actual &&
1361 test_i18ngrep "You can fix this with .git rebase --edit-todo.." actual &&
1362 FAKE_LINES="1 2 3 drop 4 5" git rebase --edit-todo &&
1363 git rebase --continue &&
1364 test E = $(git cat-file commit HEAD | sed -ne \$p) &&
1365 test C = $(git cat-file commit HEAD^ | sed -ne \$p)
1368 test_expect_success
'tabs and spaces are accepted in the todolist' '
1369 rebase_setup_and_clean indented-comment &&
1370 write_script add-indent.sh <<-\EOF &&
1372 # Turn single spaces into space/tab mix
1373 sed "1s/ / /g; 2s/ / /g; 3s/ / /g" "$1"
1374 printf "\n\t# comment\n #more\n\t # comment\n"
1378 test_set_editor "$(pwd)/add-indent.sh" &&
1379 git rebase -i HEAD^^^ &&
1380 test E = $(git cat-file commit HEAD | sed -ne \$p)
1383 test_expect_success
'static check of bad SHA-1' '
1384 rebase_setup_and_clean bad-sha &&
1386 test_must_fail env FAKE_LINES="1 2 edit fakesha 3 4 5 #" \
1387 git rebase -i --root 2>actual &&
1388 test_i18ngrep "edit XXXXXXX False commit" actual &&
1389 test_i18ngrep "You can fix this with .git rebase --edit-todo.." actual &&
1390 FAKE_LINES="1 2 4 5 6" git rebase --edit-todo &&
1391 git rebase --continue &&
1392 test E = $(git cat-file commit HEAD | sed -ne \$p)
1395 test_expect_success
'editor saves as CR/LF' '
1396 git checkout -b with-crlf &&
1397 write_script add-crs.sh <<-\EOF &&
1398 sed -e "s/\$/Q/" <"$1" | tr Q "\\015" >"$1".new &&
1402 test_set_editor "$(pwd)/add-crs.sh" &&
1408 test_expect_success
'rebase -i --gpg-sign=<key-id>' '
1409 test_when_finished "test_might_fail git rebase --abort" &&
1411 FAKE_LINES="edit 1" git rebase -i --gpg-sign="\"S I Gner\"" HEAD^ \
1413 test_i18ngrep "$SQ-S\"S I Gner\"$SQ" err
1416 test_expect_success
'rebase -i --gpg-sign=<key-id> overrides commit.gpgSign' '
1417 test_when_finished "test_might_fail git rebase --abort" &&
1418 test_config commit.gpgsign true &&
1420 FAKE_LINES="edit 1" git rebase -i --gpg-sign="\"S I Gner\"" HEAD^ \
1422 test_i18ngrep "$SQ-S\"S I Gner\"$SQ" err
1425 test_expect_success
'valid author header after --root swap' '
1426 rebase_setup_and_clean author-header no-conflict-branch &&
1428 git commit --amend --author="Au ${SQ}thor <author@example.com>" --no-edit &&
1429 git cat-file commit HEAD | grep ^author >expected &&
1430 FAKE_LINES="5 1" git rebase -i --root &&
1431 git cat-file commit HEAD^ | grep ^author >actual &&
1432 test_cmp expected actual
1435 test_expect_success
'valid author header when author contains single quote' '
1436 rebase_setup_and_clean author-header no-conflict-branch &&
1438 git commit --amend --author="Au ${SQ}thor <author@example.com>" --no-edit &&
1439 git cat-file commit HEAD | grep ^author >expected &&
1440 FAKE_LINES="2" git rebase -i HEAD~2 &&
1441 git cat-file commit HEAD | grep ^author >actual &&
1442 test_cmp expected actual