Code

rebase -i -p: fix parent rewriting
[git.git] / t / t3404-rebase-interactive.sh
1 #!/bin/sh
2 #
3 # Copyright (c) 2007 Johannes E. Schindelin
4 #
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.
10 '
11 . ./test-lib.sh
13 # set up two branches like this:
14 #
15 # A - B - C - D - E
16 #   \
17 #     F - G - H
18 #       \
19 #         I
20 #
21 # where B, D and G touch the same file.
23 test_expect_success 'setup' '
24         : > file1 &&
25         git add file1 &&
26         test_tick &&
27         git commit -m A &&
28         git tag A &&
29         echo 1 > file1 &&
30         test_tick &&
31         git commit -m B file1 &&
32         : > file2 &&
33         git add file2 &&
34         test_tick &&
35         git commit -m C &&
36         echo 2 > file1 &&
37         test_tick &&
38         git commit -m D file1 &&
39         : > file3 &&
40         git add file3 &&
41         test_tick &&
42         git commit -m E &&
43         git checkout -b branch1 A &&
44         : > file4 &&
45         git add file4 &&
46         test_tick &&
47         git commit -m F &&
48         git tag F &&
49         echo 3 > file1 &&
50         test_tick &&
51         git commit -m G file1 &&
52         : > file5 &&
53         git add file5 &&
54         test_tick &&
55         git commit -m H &&
56         git checkout -b branch2 F &&
57         : > file6 &&
58         git add file6 &&
59         test_tick &&
60         git commit -m I &&
61         git tag I
62 '
64 echo "#!$SHELL_PATH" >fake-editor.sh
65 cat >> fake-editor.sh <<\EOF
66 case "$1" in
67 */COMMIT_EDITMSG)
68         test -z "$FAKE_COMMIT_MESSAGE" || echo "$FAKE_COMMIT_MESSAGE" > "$1"
69         test -z "$FAKE_COMMIT_AMEND" || echo "$FAKE_COMMIT_AMEND" >> "$1"
70         exit
71         ;;
72 esac
73 test -z "$EXPECT_COUNT" ||
74         test "$EXPECT_COUNT" = $(sed -e '/^#/d' -e '/^$/d' < "$1" | wc -l) ||
75         exit
76 test -z "$FAKE_LINES" && exit
77 grep -v '^#' < "$1" > "$1".tmp
78 rm -f "$1"
79 cat "$1".tmp
80 action=pick
81 for line in $FAKE_LINES; do
82         case $line in
83         squash|edit)
84                 action="$line";;
85         *)
86                 echo sed -n "${line}s/^pick/$action/p"
87                 sed -n "${line}p" < "$1".tmp
88                 sed -n "${line}s/^pick/$action/p" < "$1".tmp >> "$1"
89                 action=pick;;
90         esac
91 done
92 EOF
94 test_set_editor "$(pwd)/fake-editor.sh"
95 chmod a+x fake-editor.sh
97 test_expect_success 'no changes are a nop' '
98         git rebase -i F &&
99         test "$(git symbolic-ref -q HEAD)" = "refs/heads/branch2" &&
100         test $(git rev-parse I) = $(git rev-parse HEAD)
103 test_expect_success 'test the [branch] option' '
104         git checkout -b dead-end &&
105         git rm file6 &&
106         git commit -m "stop here" &&
107         git rebase -i F branch2 &&
108         test "$(git symbolic-ref -q HEAD)" = "refs/heads/branch2" &&
109         test $(git rev-parse I) = $(git rev-parse branch2) &&
110         test $(git rev-parse I) = $(git rev-parse HEAD)
113 test_expect_success 'test --onto <branch>' '
114         git checkout -b test-onto branch2 &&
115         git rebase -i --onto branch1 F &&
116         test "$(git symbolic-ref -q HEAD)" = "refs/heads/test-onto" &&
117         test $(git rev-parse HEAD^) = $(git rev-parse branch1) &&
118         test $(git rev-parse I) = $(git rev-parse branch2)
121 test_expect_success 'rebase on top of a non-conflicting commit' '
122         git checkout branch1 &&
123         git tag original-branch1 &&
124         git rebase -i branch2 &&
125         test file6 = $(git diff --name-only original-branch1) &&
126         test "$(git symbolic-ref -q HEAD)" = "refs/heads/branch1" &&
127         test $(git rev-parse I) = $(git rev-parse branch2) &&
128         test $(git rev-parse I) = $(git rev-parse HEAD~2)
131 test_expect_success 'reflog for the branch shows state before rebase' '
132         test $(git rev-parse branch1@{1}) = $(git rev-parse original-branch1)
135 test_expect_success 'exchange two commits' '
136         FAKE_LINES="2 1" git rebase -i HEAD~2 &&
137         test H = $(git cat-file commit HEAD^ | sed -ne \$p) &&
138         test G = $(git cat-file commit HEAD | sed -ne \$p)
141 cat > expect << EOF
142 diff --git a/file1 b/file1
143 index e69de29..00750ed 100644
144 --- a/file1
145 +++ b/file1
146 @@ -0,0 +1 @@
147 +3
148 EOF
150 cat > expect2 << EOF
151 <<<<<<< HEAD:file1
153 =======
155 >>>>>>> b7ca976... G:file1
156 EOF
158 test_expect_success 'stop on conflicting pick' '
159         git tag new-branch1 &&
160         test_must_fail git rebase -i master &&
161         test "$(git rev-parse HEAD~3)" = "$(git rev-parse master)" &&
162         test_cmp expect .git/rebase-merge/patch &&
163         test_cmp expect2 file1 &&
164         test "$(git-diff --name-status |
165                 sed -n -e "/^U/s/^U[^a-z]*//p")" = file1 &&
166         test 4 = $(grep -v "^#" < .git/rebase-merge/done | wc -l) &&
167         test 0 = $(grep -c "^[^#]" < .git/rebase-merge/git-rebase-todo)
170 test_expect_success 'abort' '
171         git rebase --abort &&
172         test $(git rev-parse new-branch1) = $(git rev-parse HEAD) &&
173         test "$(git symbolic-ref -q HEAD)" = "refs/heads/branch1" &&
174         ! test -d .git/rebase-merge
177 test_expect_success 'retain authorship' '
178         echo A > file7 &&
179         git add file7 &&
180         test_tick &&
181         GIT_AUTHOR_NAME="Twerp Snog" git commit -m "different author" &&
182         git tag twerp &&
183         git rebase -i --onto master HEAD^ &&
184         git show HEAD | grep "^Author: Twerp Snog"
187 test_expect_success 'squash' '
188         git reset --hard twerp &&
189         echo B > file7 &&
190         test_tick &&
191         GIT_AUTHOR_NAME="Nitfol" git commit -m "nitfol" file7 &&
192         echo "******************************" &&
193         FAKE_LINES="1 squash 2" git rebase -i --onto master HEAD~2 &&
194         test B = $(cat file7) &&
195         test $(git rev-parse HEAD^) = $(git rev-parse master)
198 test_expect_success 'retain authorship when squashing' '
199         git show HEAD | grep "^Author: Twerp Snog"
202 test_expect_success '-p handles "no changes" gracefully' '
203         HEAD=$(git rev-parse HEAD) &&
204         git rebase -i -p HEAD^ &&
205         git update-index --refresh &&
206         git diff-files --quiet &&
207         git diff-index --quiet --cached HEAD -- &&
208         test $HEAD = $(git rev-parse HEAD)
211 test_expect_success 'preserve merges with -p' '
212         git checkout -b to-be-preserved master^ &&
213         : > unrelated-file &&
214         git add unrelated-file &&
215         test_tick &&
216         git commit -m "unrelated" &&
217         git checkout -b another-branch master &&
218         echo B > file1 &&
219         test_tick &&
220         git commit -m J file1 &&
221         test_tick &&
222         git merge to-be-preserved &&
223         echo C > file1 &&
224         test_tick &&
225         git commit -m K file1 &&
226         echo D > file1 &&
227         test_tick &&
228         git commit -m L1 file1 &&
229         git checkout HEAD^ &&
230         echo 1 > unrelated-file &&
231         test_tick &&
232         git commit -m L2 unrelated-file &&
233         test_tick &&
234         git merge another-branch &&
235         echo E > file1 &&
236         test_tick &&
237         git commit -m M file1 &&
238         git checkout -b to-be-rebased &&
239         test_tick &&
240         git rebase -i -p --onto branch1 master &&
241         git update-index --refresh &&
242         git diff-files --quiet &&
243         git diff-index --quiet --cached HEAD -- &&
244         test $(git rev-parse HEAD~6) = $(git rev-parse branch1) &&
245         test $(git rev-parse HEAD~4^2) = $(git rev-parse to-be-preserved) &&
246         test $(git rev-parse HEAD^^2^) = $(git rev-parse HEAD^^^) &&
247         test $(git show HEAD~5:file1) = B &&
248         test $(git show HEAD~3:file1) = C &&
249         test $(git show HEAD:file1) = E &&
250         test $(git show HEAD:unrelated-file) = 1
253 test_expect_success 'edit ancestor with -p' '
254         FAKE_LINES="1 edit 2 3 4" git rebase -i -p HEAD~3 &&
255         echo 2 > unrelated-file &&
256         test_tick &&
257         git commit -m L2-modified --amend unrelated-file &&
258         git rebase --continue &&
259         git update-index --refresh &&
260         git diff-files --quiet &&
261         git diff-index --quiet --cached HEAD -- &&
262         test $(git show HEAD:unrelated-file) = 2
265 test_expect_success '--continue tries to commit' '
266         test_tick &&
267         test_must_fail git rebase -i --onto new-branch1 HEAD^ &&
268         echo resolved > file1 &&
269         git add file1 &&
270         FAKE_COMMIT_MESSAGE="chouette!" git rebase --continue &&
271         test $(git rev-parse HEAD^) = $(git rev-parse new-branch1) &&
272         git show HEAD | grep chouette
275 test_expect_success 'verbose flag is heeded, even after --continue' '
276         git reset --hard HEAD@{1} &&
277         test_tick &&
278         test_must_fail git rebase -v -i --onto new-branch1 HEAD^ &&
279         echo resolved > file1 &&
280         git add file1 &&
281         git rebase --continue > output &&
282         grep "^ file1 |    2 +-$" output
285 test_expect_success 'multi-squash only fires up editor once' '
286         base=$(git rev-parse HEAD~4) &&
287         FAKE_COMMIT_AMEND="ONCE" FAKE_LINES="1 squash 2 squash 3 squash 4" \
288                 git rebase -i $base &&
289         test $base = $(git rev-parse HEAD^) &&
290         test 1 = $(git show | grep ONCE | wc -l)
293 test_expect_success 'squash works as expected' '
294         for n in one two three four
295         do
296                 echo $n >> file$n &&
297                 git add file$n &&
298                 git commit -m $n
299         done &&
300         one=$(git rev-parse HEAD~3) &&
301         FAKE_LINES="1 squash 3 2" git rebase -i HEAD~3 &&
302         test $one = $(git rev-parse HEAD~2)
305 test_expect_success 'interrupted squash works as expected' '
306         for n in one two three four
307         do
308                 echo $n >> conflict &&
309                 git add conflict &&
310                 git commit -m $n
311         done &&
312         one=$(git rev-parse HEAD~3) &&
313         (
314                 FAKE_LINES="1 squash 3 2" &&
315                 export FAKE_LINES &&
316                 test_must_fail git rebase -i HEAD~3
317         ) &&
318         (echo one; echo two; echo four) > conflict &&
319         git add conflict &&
320         test_must_fail git rebase --continue &&
321         echo resolved > conflict &&
322         git add conflict &&
323         git rebase --continue &&
324         test $one = $(git rev-parse HEAD~2)
327 test_expect_success 'interrupted squash works as expected (case 2)' '
328         for n in one two three four
329         do
330                 echo $n >> conflict &&
331                 git add conflict &&
332                 git commit -m $n
333         done &&
334         one=$(git rev-parse HEAD~3) &&
335         (
336                 FAKE_LINES="3 squash 1 2" &&
337                 export FAKE_LINES &&
338                 test_must_fail git rebase -i HEAD~3
339         ) &&
340         (echo one; echo four) > conflict &&
341         git add conflict &&
342         test_must_fail git rebase --continue &&
343         (echo one; echo two; echo four) > conflict &&
344         git add conflict &&
345         test_must_fail git rebase --continue &&
346         echo resolved > conflict &&
347         git add conflict &&
348         git rebase --continue &&
349         test $one = $(git rev-parse HEAD~2)
352 test_expect_success 'ignore patch if in upstream' '
353         HEAD=$(git rev-parse HEAD) &&
354         git checkout -b has-cherry-picked HEAD^ &&
355         echo unrelated > file7 &&
356         git add file7 &&
357         test_tick &&
358         git commit -m "unrelated change" &&
359         git cherry-pick $HEAD &&
360         EXPECT_COUNT=1 git rebase -i $HEAD &&
361         test $HEAD = $(git rev-parse HEAD^)
364 test_expect_success '--continue tries to commit, even for "edit"' '
365         parent=$(git rev-parse HEAD^) &&
366         test_tick &&
367         FAKE_LINES="edit 1" git rebase -i HEAD^ &&
368         echo edited > file7 &&
369         git add file7 &&
370         FAKE_COMMIT_MESSAGE="chouette!" git rebase --continue &&
371         test edited = $(git show HEAD:file7) &&
372         git show HEAD | grep chouette &&
373         test $parent = $(git rev-parse HEAD^)
376 test_expect_success 'rebase a detached HEAD' '
377         grandparent=$(git rev-parse HEAD~2) &&
378         git checkout $(git rev-parse HEAD) &&
379         test_tick &&
380         FAKE_LINES="2 1" git rebase -i HEAD~2 &&
381         test $grandparent = $(git rev-parse HEAD~2)
384 test_expect_success 'rebase a commit violating pre-commit' '
386         mkdir -p .git/hooks &&
387         PRE_COMMIT=.git/hooks/pre-commit &&
388         echo "#!/bin/sh" > $PRE_COMMIT &&
389         echo "test -z \"\$(git diff --cached --check)\"" >> $PRE_COMMIT &&
390         chmod a+x $PRE_COMMIT &&
391         echo "monde! " >> file1 &&
392         test_tick &&
393         test_must_fail git commit -m doesnt-verify file1 &&
394         git commit -m doesnt-verify --no-verify file1 &&
395         test_tick &&
396         FAKE_LINES=2 git rebase -i HEAD~2
400 test_expect_success 'rebase with a file named HEAD in worktree' '
402         rm -fr .git/hooks &&
403         git reset --hard &&
404         git checkout -b branch3 A &&
406         (
407                 GIT_AUTHOR_NAME="Squashed Away" &&
408                 export GIT_AUTHOR_NAME &&
409                 >HEAD &&
410                 git add HEAD &&
411                 git commit -m "Add head" &&
412                 >BODY &&
413                 git add BODY &&
414                 git commit -m "Add body"
415         ) &&
417         FAKE_LINES="1 squash 2" git rebase -i to-be-rebased &&
418         test "$(git show -s --pretty=format:%an)" = "Squashed Away"
422 test_done