3 test_description
='git rebase --continue tests'
7 .
"$TEST_DIRECTORY"/lib-rebase.sh
11 test_expect_success
'setup' '
12 test_commit "commit-new-file-F1" F1 1 &&
13 test_commit "commit-new-file-F2" F2 2 &&
15 git checkout -b topic HEAD^ &&
16 test_commit "commit-new-file-F2-on-topic-branch" F2 22 &&
21 test_expect_success
'interactive rebase --continue works with touched file' '
22 rm -fr .git/rebase-* &&
24 git checkout master &&
26 FAKE_LINES="edit 1" git rebase -i HEAD^ &&
27 test-chmtime =-60 F1 &&
31 test_expect_success
'non-interactive rebase --continue works with touched file' '
32 rm -fr .git/rebase-* &&
34 git checkout master &&
36 test_must_fail git rebase --onto master master topic &&
37 echo "Resolved" >F2 &&
39 test-chmtime =-60 F1 &&
43 test_expect_success
'rebase --continue can not be used with other options' '
44 test_must_fail git rebase -v --continue &&
45 test_must_fail git rebase --continue -v
48 test_expect_success
'rebase --continue remembers merge strategy and options' '
49 rm -fr .git/rebase-* &&
50 git reset --hard commit-new-file-F2-on-topic-branch &&
51 test_commit "commit-new-file-F3-on-topic-branch" F3 32 &&
52 test_when_finished "rm -fr test-bin funny.was.run" &&
54 cat >test-bin/git-merge-funny <<-EOF
56 case "\$1" in --opt) ;; *) exit 2 ;; esac
59 exec git merge-recursive "\$@"
61 chmod +x test-bin/git-merge-funny &&
64 test_must_fail git rebase -s funny -Xopt master topic
66 test -f funny.was.run &&
68 echo "Resolved" >F2 &&
77 test_expect_success
'rebase --continue remembers --rerere-autoupdate' '
78 rm -fr .git/rebase-* &&
79 git reset --hard commit-new-file-F3-on-topic-branch &&
81 test_commit "commit-new-file-F3" F3 3 &&
82 git config rerere.enabled true &&
83 test_must_fail git rebase -m master topic &&
84 echo "Resolved" >F2 &&
86 test_must_fail git rebase --continue &&
87 echo "Resolved" >F3 &&
89 git rebase --continue &&
90 git reset --hard topic@{1} &&
91 test_must_fail git rebase -m --rerere-autoupdate master &&
92 test "$(cat F2)" = "Resolved" &&
93 test_must_fail git rebase --continue &&
94 test "$(cat F3)" = "Resolved" &&