2007-07-10 15:50:49 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test_description='test git rev-list --cherry-pick -- file'
|
|
|
|
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
2011-02-21 17:09:12 +01:00
|
|
|
# A---B---D---F
|
2007-07-10 15:50:49 +02:00
|
|
|
# \
|
|
|
|
# \
|
2011-02-18 13:34:19 +01:00
|
|
|
# C---E
|
2007-07-10 15:50:49 +02:00
|
|
|
#
|
|
|
|
# B changes a file foo.c, adding a line of text. C changes foo.c as
|
|
|
|
# well as bar.c, but the change in foo.c was identical to change B.
|
2011-02-21 17:09:12 +01:00
|
|
|
# D and C change bar in the same way, E and F differently.
|
2007-07-10 15:50:49 +02:00
|
|
|
|
|
|
|
test_expect_success setup '
|
|
|
|
echo Hallo > foo &&
|
|
|
|
git add foo &&
|
|
|
|
test_tick &&
|
|
|
|
git commit -m "A" &&
|
|
|
|
git tag A &&
|
|
|
|
git checkout -b branch &&
|
|
|
|
echo Bello > foo &&
|
|
|
|
echo Cello > bar &&
|
|
|
|
git add foo bar &&
|
|
|
|
test_tick &&
|
|
|
|
git commit -m "C" &&
|
|
|
|
git tag C &&
|
2011-02-18 13:34:19 +01:00
|
|
|
echo Dello > bar &&
|
|
|
|
git add bar &&
|
|
|
|
test_tick &&
|
|
|
|
git commit -m "E" &&
|
|
|
|
git tag E &&
|
2007-07-10 15:50:49 +02:00
|
|
|
git checkout master &&
|
|
|
|
git checkout branch foo &&
|
|
|
|
test_tick &&
|
|
|
|
git commit -m "B" &&
|
2011-02-18 13:34:19 +01:00
|
|
|
git tag B &&
|
|
|
|
echo Cello > bar &&
|
|
|
|
git add bar &&
|
|
|
|
test_tick &&
|
|
|
|
git commit -m "D" &&
|
2011-02-21 17:09:12 +01:00
|
|
|
git tag D &&
|
|
|
|
echo Nello > bar &&
|
|
|
|
git add bar &&
|
|
|
|
test_tick &&
|
|
|
|
git commit -m "F" &&
|
|
|
|
git tag F
|
2007-07-10 15:50:49 +02:00
|
|
|
'
|
|
|
|
|
2010-06-10 13:47:23 +02:00
|
|
|
cat >expect <<EOF
|
|
|
|
<tags/B
|
|
|
|
>tags/C
|
|
|
|
EOF
|
|
|
|
|
|
|
|
test_expect_success '--left-right' '
|
|
|
|
git rev-list --left-right B...C > actual &&
|
|
|
|
git name-rev --stdin --name-only --refs="*tags/*" \
|
|
|
|
< actual > actual.named &&
|
|
|
|
test_cmp actual.named expect
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success '--count' '
|
|
|
|
git rev-list --count B...C > actual &&
|
|
|
|
test "$(cat actual)" = 2
|
|
|
|
'
|
|
|
|
|
2007-07-10 15:50:49 +02:00
|
|
|
test_expect_success '--cherry-pick foo comes up empty' '
|
|
|
|
test -z "$(git rev-list --left-right --cherry-pick B...C -- foo)"
|
|
|
|
'
|
|
|
|
|
2011-02-18 13:34:19 +01:00
|
|
|
cat >expect <<EOF
|
|
|
|
>tags/C
|
|
|
|
EOF
|
|
|
|
|
2007-07-10 15:50:49 +02:00
|
|
|
test_expect_success '--cherry-pick bar does not come up empty' '
|
2011-02-18 13:34:19 +01:00
|
|
|
git rev-list --left-right --cherry-pick B...C -- bar > actual &&
|
|
|
|
git name-rev --stdin --name-only --refs="*tags/*" \
|
|
|
|
< actual > actual.named &&
|
|
|
|
test_cmp actual.named expect
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'bar does not come up empty' '
|
|
|
|
git rev-list --left-right B...C -- bar > actual &&
|
|
|
|
git name-rev --stdin --name-only --refs="*tags/*" \
|
|
|
|
< actual > actual.named &&
|
|
|
|
test_cmp actual.named expect
|
|
|
|
'
|
|
|
|
|
|
|
|
cat >expect <<EOF
|
2011-02-21 17:09:12 +01:00
|
|
|
<tags/F
|
2011-02-18 13:34:19 +01:00
|
|
|
>tags/E
|
|
|
|
EOF
|
|
|
|
|
|
|
|
test_expect_success '--cherry-pick bar does not come up empty (II)' '
|
2011-02-21 17:09:12 +01:00
|
|
|
git rev-list --left-right --cherry-pick F...E -- bar > actual &&
|
|
|
|
git name-rev --stdin --name-only --refs="*tags/*" \
|
|
|
|
< actual > actual.named &&
|
|
|
|
test_cmp actual.named expect
|
|
|
|
'
|
|
|
|
|
|
|
|
cat >expect <<EOF
|
2011-03-07 13:31:41 +01:00
|
|
|
+tags/F
|
|
|
|
=tags/D
|
|
|
|
+tags/E
|
|
|
|
=tags/C
|
|
|
|
EOF
|
|
|
|
|
|
|
|
test_expect_success '--cherry-mark' '
|
|
|
|
git rev-list --cherry-mark F...E -- bar > actual &&
|
|
|
|
git name-rev --stdin --name-only --refs="*tags/*" \
|
|
|
|
< actual > actual.named &&
|
|
|
|
test_cmp actual.named expect
|
|
|
|
'
|
|
|
|
|
|
|
|
cat >expect <<EOF
|
|
|
|
<tags/F
|
|
|
|
=tags/D
|
|
|
|
>tags/E
|
|
|
|
=tags/C
|
|
|
|
EOF
|
|
|
|
|
|
|
|
test_expect_success '--cherry-mark --left-right' '
|
|
|
|
git rev-list --cherry-mark --left-right F...E -- bar > actual &&
|
|
|
|
git name-rev --stdin --name-only --refs="*tags/*" \
|
|
|
|
< actual > actual.named &&
|
|
|
|
test_cmp actual.named expect
|
|
|
|
'
|
|
|
|
|
|
|
|
cat >expect <<EOF
|
2011-02-21 17:09:12 +01:00
|
|
|
tags/E
|
|
|
|
EOF
|
|
|
|
|
|
|
|
test_expect_success '--cherry-pick --right-only' '
|
|
|
|
git rev-list --cherry-pick --right-only F...E -- bar > actual &&
|
|
|
|
git name-rev --stdin --name-only --refs="*tags/*" \
|
|
|
|
< actual > actual.named &&
|
|
|
|
test_cmp actual.named expect
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success '--cherry-pick --left-only' '
|
|
|
|
git rev-list --cherry-pick --left-only E...F -- bar > actual &&
|
2011-02-18 13:34:19 +01:00
|
|
|
git name-rev --stdin --name-only --refs="*tags/*" \
|
|
|
|
< actual > actual.named &&
|
|
|
|
test_cmp actual.named expect
|
2007-07-10 15:50:49 +02:00
|
|
|
'
|
|
|
|
|
2011-03-07 13:31:43 +01:00
|
|
|
cat >expect <<EOF
|
|
|
|
+tags/E
|
|
|
|
=tags/C
|
|
|
|
EOF
|
|
|
|
|
|
|
|
test_expect_success '--cherry' '
|
|
|
|
git rev-list --cherry F...E -- bar > actual &&
|
|
|
|
git name-rev --stdin --name-only --refs="*tags/*" \
|
|
|
|
< actual > actual.named &&
|
|
|
|
test_cmp actual.named expect
|
|
|
|
'
|
|
|
|
|
2011-04-26 10:24:29 +02:00
|
|
|
cat >expect <<EOF
|
|
|
|
1 1
|
|
|
|
EOF
|
|
|
|
|
|
|
|
test_expect_success '--cherry --count' '
|
|
|
|
git rev-list --cherry --count F...E -- bar > actual &&
|
|
|
|
test_cmp actual expect
|
|
|
|
'
|
|
|
|
|
|
|
|
cat >expect <<EOF
|
|
|
|
2 2
|
|
|
|
EOF
|
|
|
|
|
|
|
|
test_expect_success '--cherry-mark --count' '
|
|
|
|
git rev-list --cherry-mark --count F...E -- bar > actual &&
|
|
|
|
test_cmp actual expect
|
|
|
|
'
|
|
|
|
|
|
|
|
cat >expect <<EOF
|
|
|
|
1 1 2
|
|
|
|
EOF
|
|
|
|
|
|
|
|
test_expect_success '--cherry-mark --left-right --count' '
|
|
|
|
git rev-list --cherry-mark --left-right --count F...E -- bar > actual &&
|
|
|
|
test_cmp actual expect
|
|
|
|
'
|
|
|
|
|
2007-09-15 19:39:52 +02:00
|
|
|
test_expect_success '--cherry-pick with independent, but identical branches' '
|
|
|
|
git symbolic-ref HEAD refs/heads/independent &&
|
|
|
|
rm .git/index &&
|
|
|
|
echo Hallo > foo &&
|
|
|
|
git add foo &&
|
|
|
|
test_tick &&
|
|
|
|
git commit -m "independent" &&
|
|
|
|
echo Bello > foo &&
|
|
|
|
test_tick &&
|
|
|
|
git commit -m "independent, too" foo &&
|
|
|
|
test -z "$(git rev-list --left-right --cherry-pick \
|
|
|
|
HEAD...master -- foo)"
|
|
|
|
'
|
|
|
|
|
2010-06-10 13:47:23 +02:00
|
|
|
cat >expect <<EOF
|
|
|
|
1 2
|
|
|
|
EOF
|
|
|
|
|
|
|
|
test_expect_success '--count --left-right' '
|
2011-02-18 13:34:19 +01:00
|
|
|
git rev-list --count --left-right C...D > actual &&
|
2010-06-10 13:47:23 +02:00
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
2007-07-10 15:50:49 +02:00
|
|
|
test_done
|