3 test_description='test git rev-list --cherry-pick -- file'
12 # B changes a file foo.c, adding a line of text. C changes foo.c as
13 # well as bar.c, but the change in foo.c was identical to change B.
14 # D and C change bar in the same way, E and F differently.
16 test_expect_success setup '
22 git checkout -b branch &&
34 git checkout master &&
35 git checkout branch foo &&
56 test_expect_success '--left-right' '
57 git rev-list --left-right B...C > actual &&
58 git name-rev --stdin --name-only --refs="*tags/*" \
59 < actual > actual.named &&
60 test_cmp actual.named expect
63 test_expect_success '--count' '
64 git rev-list --count B...C > actual &&
65 test "$(cat actual)" = 2
68 test_expect_success '--cherry-pick foo comes up empty' '
69 test -z "$(git rev-list --left-right --cherry-pick B...C -- foo)"
76 test_expect_success '--cherry-pick bar does not come up empty' '
77 git rev-list --left-right --cherry-pick B...C -- bar > actual &&
78 git name-rev --stdin --name-only --refs="*tags/*" \
79 < actual > actual.named &&
80 test_cmp actual.named expect
83 test_expect_success 'bar does not come up empty' '
84 git rev-list --left-right B...C -- bar > actual &&
85 git name-rev --stdin --name-only --refs="*tags/*" \
86 < actual > actual.named &&
87 test_cmp actual.named expect
95 test_expect_success '--cherry-pick bar does not come up empty (II)' '
96 git rev-list --left-right --cherry-pick F...E -- bar > actual &&
97 git name-rev --stdin --name-only --refs="*tags/*" \
98 < actual > actual.named &&
99 test_cmp actual.named expect
102 test_expect_success 'name-rev multiple --refs combine inclusive' '
103 git rev-list --left-right --cherry-pick F...E -- bar >actual &&
104 git name-rev --stdin --name-only --refs="*tags/F" --refs="*tags/E" \
105 <actual >actual.named &&
106 test_cmp actual.named expect
113 test_expect_success 'name-rev --refs excludes non-matched patterns' '
114 git rev-list --left-right --right-only --cherry-pick F...E -- bar >>expect &&
115 git rev-list --left-right --cherry-pick F...E -- bar >actual &&
116 git name-rev --stdin --name-only --refs="*tags/F" \
117 <actual >actual.named &&
118 test_cmp actual.named expect
125 test_expect_success 'name-rev --exclude excludes matched patterns' '
126 git rev-list --left-right --right-only --cherry-pick F...E -- bar >>expect &&
127 git rev-list --left-right --cherry-pick F...E -- bar >actual &&
128 git name-rev --stdin --name-only --refs="*tags/*" --exclude="*E" \
129 <actual >actual.named &&
130 test_cmp actual.named expect
133 test_expect_success 'name-rev --no-refs clears the refs list' '
134 git rev-list --left-right --cherry-pick F...E -- bar >expect &&
135 git name-rev --stdin --name-only --refs="*tags/F" --refs="*tags/E" --no-refs --refs="*tags/G" \
137 test_cmp actual expect
147 test_expect_success '--cherry-mark' '
148 git rev-list --cherry-mark F...E -- bar > actual &&
149 git name-rev --stdin --name-only --refs="*tags/*" \
150 < actual > actual.named &&
151 test_cmp actual.named expect
161 test_expect_success '--cherry-mark --left-right' '
162 git rev-list --cherry-mark --left-right F...E -- bar > actual &&
163 git name-rev --stdin --name-only --refs="*tags/*" \
164 < actual > actual.named &&
165 test_cmp actual.named expect
172 test_expect_success '--cherry-pick --right-only' '
173 git rev-list --cherry-pick --right-only F...E -- bar > actual &&
174 git name-rev --stdin --name-only --refs="*tags/*" \
175 < actual > actual.named &&
176 test_cmp actual.named expect
179 test_expect_success '--cherry-pick --left-only' '
180 git rev-list --cherry-pick --left-only E...F -- bar > actual &&
181 git name-rev --stdin --name-only --refs="*tags/*" \
182 < actual > actual.named &&
183 test_cmp actual.named expect
191 test_expect_success '--cherry' '
192 git rev-list --cherry F...E -- bar > actual &&
193 git name-rev --stdin --name-only --refs="*tags/*" \
194 < actual > actual.named &&
195 test_cmp actual.named expect
202 test_expect_success '--cherry --count' '
203 git rev-list --cherry --count F...E -- bar > actual &&
204 test_cmp actual expect
211 test_expect_success '--cherry-mark --count' '
212 git rev-list --cherry-mark --count F...E -- bar > actual &&
213 test_cmp actual expect
220 test_expect_success '--cherry-mark --left-right --count' '
221 git rev-list --cherry-mark --left-right --count F...E -- bar > actual &&
222 test_cmp actual expect
225 test_expect_success '--cherry-pick with independent, but identical branches' '
226 git symbolic-ref HEAD refs/heads/independent &&
231 git commit -m "independent" &&
234 git commit -m "independent, too" foo &&
235 test -z "$(git rev-list --left-right --cherry-pick \
236 HEAD...master -- foo)"
243 test_expect_success '--count --left-right' '
244 git rev-list --count --left-right C...D > actual &&
245 test_cmp expect actual
248 # Corrupt the object store deliberately to make sure
249 # the object is not even checked for its existence.
250 remove_loose_object () {
251 sha1="$(git rev-parse "$1")" &&
252 remainder=${sha1#??} &&
253 firsttwo=${sha1%$remainder} &&
254 rm .git/objects/$firsttwo/$remainder
257 test_expect_success '--cherry-pick avoids looking at full diffs' '
258 git checkout -b shy-diff &&
259 test_commit dont-look-at-me &&
260 echo Hello >dont-look-at-me.t &&
262 git commit -m tip dont-look-at-me.t &&
263 git checkout -b mainline HEAD^ &&
264 test_commit to-cherry-pick &&
265 remove_loose_object shy-diff^:dont-look-at-me.t &&
266 git rev-list --cherry-pick ...shy-diff