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 passes merge strategy options correctly' '
78 rm -fr .git/rebase-* &&
79 git reset --hard commit-new-file-F3-on-topic-branch &&
80 test_commit theirs-to-merge &&
81 git reset --hard HEAD^ &&
82 test_commit some-commit &&
84 git merge --no-ff theirs-to-merge &&
85 FAKE_LINES="1 edit 2 3" git rebase -i -f -p -m \
86 -s recursive --strategy-option=theirs HEAD~2 &&
87 test_commit force-change &&
91 test_expect_success
'setup rerere database' '
92 rm -fr .git/rebase-* &&
93 git reset --hard commit-new-file-F3-on-topic-branch &&
94 git checkout master &&
95 test_commit "commit-new-file-F3" F3 3 &&
96 test_config rerere.enabled true &&
97 test_must_fail git rebase -m master topic &&
98 echo "Resolved" >F2 &&
101 test_must_fail git rebase --continue &&
102 echo "Resolved" >F3 &&
105 git rebase --continue &&
106 git reset --hard topic@{1}
110 rm -fr .git
/rebase-
* &&
111 git
reset --hard commit-new-file-F3-on-topic-branch
&&
112 git checkout master
&&
113 test_config rerere.enabled true
116 test_rerere_autoupdate
() {
118 test_expect_success
"rebase $action --continue remembers --rerere-autoupdate" '
120 test_must_fail git rebase $action --rerere-autoupdate master topic &&
121 test_cmp expected-F2 F2 &&
122 git diff-files --quiet &&
123 test_must_fail git rebase --continue &&
124 test_cmp expected-F3 F3 &&
125 git diff-files --quiet &&
126 git rebase --continue
129 test_expect_success
"rebase $action --continue honors rerere.autoUpdate" '
131 test_config rerere.autoupdate true &&
132 test_must_fail git rebase $action master topic &&
133 test_cmp expected-F2 F2 &&
134 git diff-files --quiet &&
135 test_must_fail git rebase --continue &&
136 test_cmp expected-F3 F3 &&
137 git diff-files --quiet &&
138 git rebase --continue
141 test_expect_success
"rebase $action --continue remembers --no-rerere-autoupdate" '
143 test_config rerere.autoupdate true &&
144 test_must_fail git rebase $action --no-rerere-autoupdate master topic &&
145 test_cmp expected-F2 F2 &&
146 test_must_fail git diff-files --quiet &&
148 test_must_fail git rebase --continue &&
149 test_cmp expected-F3 F3 &&
150 test_must_fail git diff-files --quiet &&
152 git rebase --continue
156 test_rerere_autoupdate
157 test_rerere_autoupdate
-m
158 GIT_SEQUENCE_EDITOR
=: && export GIT_SEQUENCE_EDITOR
159 test_rerere_autoupdate
-i
160 test_rerere_autoupdate
--preserve-merges