Merge branch 'db/show-ref-head'
[git/mingw.git] / t / t3409-rebase-preserve-merges.sh
blob2e0c36415fe525663fdcc64675fd081c642732ed
1 #!/bin/sh
3 # Copyright(C) 2008 Stephen Habermann & Andreas Ericsson
5 test_description='git rebase -p should preserve merges
7 Run "git rebase -p" and check that merges are properly carried along
9 . ./test-lib.sh
11 GIT_AUTHOR_EMAIL=bogus_email_address
12 export GIT_AUTHOR_EMAIL
14 # Clone 2 (conflicting merge):
16 # A1--A2--B3 <-- origin/master
17 # \ \
18 # B1------M <-- topic
19 # \
20 # B2 <-- origin/topic
22 # Clone 3 (no-ff merge):
24 # A1--A2--B3 <-- origin/master
25 # \
26 # B1------M <-- topic
27 # \ /
28 # \--A3 <-- topic2
29 # \
30 # B2 <-- origin/topic
32 test_expect_success 'setup for merge-preserving rebase' \
33 'echo First > A &&
34 git add A &&
35 git commit -m "Add A1" &&
36 git checkout -b topic &&
37 echo Second > B &&
38 git add B &&
39 git commit -m "Add B1" &&
40 git checkout -f master &&
41 echo Third >> A &&
42 git commit -a -m "Modify A2" &&
43 echo Fifth > B &&
44 git add B &&
45 git commit -m "Add different B" &&
47 git clone ./. clone2 &&
49 cd clone2 &&
50 git checkout -b topic origin/topic &&
51 test_must_fail git merge origin/master &&
52 echo Resolved >B &&
53 git add B &&
54 git commit -m "Merge origin/master into topic"
55 ) &&
57 git clone ./. clone3 &&
59 cd clone3 &&
60 git checkout -b topic2 origin/topic &&
61 echo Sixth > A &&
62 git commit -a -m "Modify A3" &&
63 git checkout -b topic origin/topic &&
64 git merge --no-ff topic2
65 ) &&
67 git checkout topic &&
68 echo Fourth >> B &&
69 git commit -a -m "Modify B2"
72 test_expect_success '--continue works after a conflict' '
74 cd clone2 &&
75 git fetch &&
76 test_must_fail git rebase -p origin/topic &&
77 test 2 = $(git ls-files B | wc -l) &&
78 echo Resolved again > B &&
79 test_must_fail git rebase --continue &&
80 grep "^@@@ " .git/rebase-merge/patch &&
81 git add B &&
82 git rebase --continue &&
83 test 1 = $(git rev-list --all --pretty=oneline | grep "Modify A" | wc -l) &&
84 test 1 = $(git rev-list --all --pretty=oneline | grep "Add different" | wc -l) &&
85 test 1 = $(git rev-list --all --pretty=oneline | grep "Merge origin" | wc -l)
89 test_expect_success 'rebase -p preserves no-ff merges' '
91 cd clone3 &&
92 git fetch &&
93 git rebase -p origin/topic &&
94 test 3 = $(git rev-list --all --pretty=oneline | grep "Modify A" | wc -l) &&
95 test 1 = $(git rev-list --all --pretty=oneline | grep "Merge branch" | wc -l)
99 test_done