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
11 GIT_AUTHOR_EMAIL
=bogus_email_address
12 export GIT_AUTHOR_EMAIL
14 # Clone 1 (trivial merge):
16 # A1--A2 <-- origin/master
22 # Clone 2 (conflicting merge):
24 # A1--A2--B3 <-- origin/master
30 # Clone 3 (no-ff merge):
32 # A1--A2--B3 <-- origin/master
40 # In all cases, 'topic' is rebased onto 'origin/topic'.
42 test_expect_success
'setup for merge-preserving rebase' \
45 git commit -m "Add A1" &&
46 git checkout -b topic &&
49 git commit -m "Add B1" &&
50 git checkout -f master &&
52 git commit -a -m "Modify A2" &&
54 git clone ./. clone1 &&
56 git checkout -b topic origin/topic &&
57 git merge origin/master
62 git commit -m "Add different B" &&
64 git clone ./. clone2 &&
67 git checkout -b topic origin/topic &&
68 test_must_fail git merge origin/master &&
71 git commit -m "Merge origin/master into topic"
74 git clone ./. clone3 &&
77 git checkout -b topic2 origin/topic &&
79 git commit -a -m "Modify A3" &&
80 git checkout -b topic origin/topic &&
81 git merge --no-ff topic2
86 git commit -a -m "Modify B2"
89 test_expect_success
'rebase -p fakes interactive rebase' '
93 git rebase -p origin/topic &&
94 test 1 = $(git rev-list --all --pretty=oneline | grep "Modify A" | wc -l) &&
95 test 1 = $(git rev-list --all --pretty=oneline | grep "Merge remote-tracking branch " | wc -l)
99 test_expect_success
'--continue works after a conflict' '
103 test_must_fail git rebase -p origin/topic &&
104 test 2 = $(git ls-files B | wc -l) &&
105 echo Resolved again > B &&
106 test_must_fail git rebase --continue &&
107 grep "^@@@ " .git/rebase-merge/patch &&
109 git rebase --continue &&
110 test 1 = $(git rev-list --all --pretty=oneline | grep "Modify A" | wc -l) &&
111 test 1 = $(git rev-list --all --pretty=oneline | grep "Add different" | wc -l) &&
112 test 1 = $(git rev-list --all --pretty=oneline | grep "Merge origin" | wc -l)
116 test_expect_success
'rebase -p preserves no-ff merges' '
120 git rebase -p origin/topic &&
121 test 3 = $(git rev-list --all --pretty=oneline | grep "Modify A" | wc -l) &&
122 test 1 = $(git rev-list --all --pretty=oneline | grep "Merge branch" | wc -l)