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 # set up two branches like this:
21 # where B, D and G touch the same file.
23 test_expect_success
'setup' '
31 git commit -m B file1 &&
38 git commit -m D file1 &&
43 git checkout -b branch1 A &&
51 git commit -m G file1 &&
56 git checkout -b branch2 F &&
64 cat > fake-editor.sh
<< EOF
66 test "\$1" = .git/COMMIT_EDITMSG && {
67 test -z "\$FAKE_COMMIT_MESSAGE" || echo "\$FAKE_COMMIT_MESSAGE" > "\$1"
68 test -z "\$FAKE_COMMIT_AMEND" || echo "\$FAKE_COMMIT_AMEND" >> "\$1"
71 test -z "\$EXPECT_COUNT" ||
72 test "\$EXPECT_COUNT" = \$(grep -ve "^#" -e "^$" < "\$1" | wc -l) ||
74 test -z "\$FAKE_LINES" && exit
75 grep -v "^#" < "\$1" > "\$1".tmp
79 for line in \$FAKE_LINES; do
84 echo sed -n "\${line}s/^pick/\$action/p"
85 sed -n "\${line}p" < "\$1".tmp
86 sed -n "\${line}s/^pick/\$action/p" < "\$1".tmp >> "\$1"
92 chmod a
+x fake-editor.sh
93 VISUAL
="$(pwd)/fake-editor.sh"
96 test_expect_success
'no changes are a nop' '
98 test $(git rev-parse I) = $(git rev-parse HEAD)
101 test_expect_success
'test the [branch] option' '
102 git checkout -b dead-end &&
104 git commit -m "stop here" &&
105 git rebase -i F branch2 &&
106 test $(git rev-parse I) = $(git rev-parse HEAD)
109 test_expect_success
'rebase on top of a non-conflicting commit' '
110 git checkout branch1 &&
111 git tag original-branch1 &&
112 git rebase -i branch2 &&
113 test file6 = $(git diff --name-only original-branch1) &&
114 test $(git rev-parse I) = $(git rev-parse HEAD~2)
117 test_expect_success
'reflog for the branch shows state before rebase' '
118 test $(git rev-parse branch1@{1}) = $(git rev-parse original-branch1)
121 test_expect_success
'exchange two commits' '
122 FAKE_LINES="2 1" git rebase -i HEAD~2 &&
123 test H = $(git cat-file commit HEAD^ | tail -n 1) &&
124 test G = $(git cat-file commit HEAD | tail -n 1)
128 diff --git a/file1 b/file1
129 index e69de29..00750ed 100644
141 >>>>>>> b7ca976... G:file1
144 test_expect_success
'stop on conflicting pick' '
145 git tag new-branch1 &&
146 ! git rebase -i master &&
147 diff -u expect .git/.dotest-merge/patch &&
148 diff -u expect2 file1 &&
149 test 4 = $(grep -v "^#" < .git/.dotest-merge/done | wc -l) &&
150 test 0 = $(grep -v "^#" < .git/.dotest-merge/todo | wc -l)
153 test_expect_success
'abort' '
154 git rebase --abort &&
155 test $(git rev-parse new-branch1) = $(git rev-parse HEAD) &&
156 ! test -d .git/.dotest-merge
159 test_expect_success
'retain authorship' '
163 GIT_AUTHOR_NAME="Twerp Snog" git commit -m "different author" &&
165 git rebase -i --onto master HEAD^ &&
166 git show HEAD | grep "^Author: Twerp Snog"
169 test_expect_success
'squash' '
170 git reset --hard twerp &&
173 GIT_AUTHOR_NAME="Nitfol" git commit -m "nitfol" file7 &&
174 echo "******************************" &&
175 FAKE_LINES="1 squash 2" git rebase -i --onto master HEAD~2 &&
176 test B = $(cat file7) &&
177 test $(git rev-parse HEAD^) = $(git rev-parse master)
180 test_expect_success
'retain authorship when squashing' '
181 git show HEAD | grep "^Author: Nitfol"
184 test_expect_success
'preserve merges with -p' '
185 git checkout -b to-be-preserved master^ &&
186 : > unrelated-file &&
187 git add unrelated-file &&
189 git commit -m "unrelated" &&
190 git checkout -b to-be-rebased master &&
193 git commit -m J file1 &&
195 git merge to-be-preserved &&
198 git commit -m K file1 &&
200 git rebase -i -p --onto branch1 master &&
201 test $(git rev-parse HEAD^^2) = $(git rev-parse to-be-preserved) &&
202 test $(git rev-parse HEAD~3) = $(git rev-parse branch1) &&
203 test $(git show HEAD:file1) = C &&
204 test $(git show HEAD~2:file1) = B
207 test_expect_success
'--continue tries to commit' '
209 ! git rebase -i --onto new-branch1 HEAD^ &&
210 echo resolved > file1 &&
212 FAKE_COMMIT_MESSAGE="chouette!" git rebase --continue &&
213 test $(git rev-parse HEAD^) = $(git rev-parse new-branch1) &&
214 git show HEAD | grep chouette
217 test_expect_success
'verbose flag is heeded, even after --continue' '
218 git reset --hard HEAD@{1} &&
220 ! git rebase -v -i --onto new-branch1 HEAD^ &&
221 echo resolved > file1 &&
223 git rebase --continue > output &&
224 grep "^ file1 | 2 +-$" output
227 test_expect_success
'multi-squash only fires up editor once' '
228 base=$(git rev-parse HEAD~4) &&
229 FAKE_COMMIT_AMEND="ONCE" FAKE_LINES="1 squash 2 squash 3 squash 4" \
230 git rebase -i $base &&
231 test $base = $(git rev-parse HEAD^) &&
232 test 1 = $(git show | grep ONCE | wc -l)
235 test_expect_success
'squash works as expected' '
236 for n in one two three four
242 one=$(git rev-parse HEAD~3) &&
243 FAKE_LINES="1 squash 3 2" git rebase -i HEAD~3 &&
244 test $one = $(git rev-parse HEAD~2)
247 test_expect_success
'interrupted squash works as expected' '
248 for n in one two three four
250 echo $n >> conflict &&
254 one=$(git rev-parse HEAD~3) &&
255 ! FAKE_LINES="1 squash 3 2" git rebase -i HEAD~3 &&
256 (echo one; echo two; echo four) > conflict &&
258 ! git rebase --continue &&
259 echo resolved > conflict &&
261 git rebase --continue &&
262 test $one = $(git rev-parse HEAD~2)
265 test_expect_success
'ignore patch if in upstream' '
266 HEAD=$(git rev-parse HEAD) &&
267 git checkout -b has-cherry-picked HEAD^ &&
268 echo unrelated > file7 &&
271 git commit -m "unrelated change" &&
272 git cherry-pick $HEAD &&
273 EXPECT_COUNT=1 git rebase -i $HEAD &&
274 test $HEAD = $(git rev-parse HEAD^)