2007-07-10 15:50:49 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test_description='test git rev-list --cherry-pick -- file'
|
|
|
|
|
tests: mark tests relying on the current default for `init.defaultBranch`
In addition to the manual adjustment to let the `linux-gcc` CI job run
the test suite with `master` and then with `main`, this patch makes sure
that GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME is set in all test scripts
that currently rely on the initial branch name being `master by default.
To determine which test scripts to mark up, the first step was to
force-set the default branch name to `master` in
- all test scripts that contain the keyword `master`,
- t4211, which expects `t/t4211/history.export` with a hard-coded ref to
initialize the default branch,
- t5560 because it sources `t/t556x_common` which uses `master`,
- t8002 and t8012 because both source `t/annotate-tests.sh` which also
uses `master`)
This trick was performed by this command:
$ sed -i '/^ *\. \.\/\(test-lib\|lib-\(bash\|cvs\|git-svn\)\|gitweb-lib\)\.sh$/i\
GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=master\
export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME\
' $(git grep -l master t/t[0-9]*.sh) \
t/t4211*.sh t/t5560*.sh t/t8002*.sh t/t8012*.sh
After that, careful, manual inspection revealed that some of the test
scripts containing the needle `master` do not actually rely on a
specific default branch name: either they mention `master` only in a
comment, or they initialize that branch specificially, or they do not
actually refer to the current default branch. Therefore, the
aforementioned modification was undone in those test scripts thusly:
$ git checkout HEAD -- \
t/t0027-auto-crlf.sh t/t0060-path-utils.sh \
t/t1011-read-tree-sparse-checkout.sh \
t/t1305-config-include.sh t/t1309-early-config.sh \
t/t1402-check-ref-format.sh t/t1450-fsck.sh \
t/t2024-checkout-dwim.sh \
t/t2106-update-index-assume-unchanged.sh \
t/t3040-subprojects-basic.sh t/t3301-notes.sh \
t/t3308-notes-merge.sh t/t3423-rebase-reword.sh \
t/t3436-rebase-more-options.sh \
t/t4015-diff-whitespace.sh t/t4257-am-interactive.sh \
t/t5323-pack-redundant.sh t/t5401-update-hooks.sh \
t/t5511-refspec.sh t/t5526-fetch-submodules.sh \
t/t5529-push-errors.sh t/t5530-upload-pack-error.sh \
t/t5548-push-porcelain.sh \
t/t5552-skipping-fetch-negotiator.sh \
t/t5572-pull-submodule.sh t/t5608-clone-2gb.sh \
t/t5614-clone-submodules-shallow.sh \
t/t7508-status.sh t/t7606-merge-custom.sh \
t/t9302-fast-import-unpack-limit.sh
We excluded one set of test scripts in these commands, though: the range
of `git p4` tests. The reason? `git p4` stores the (foreign) remote
branch in the branch called `p4/master`, which is obviously not the
default branch. Manual analysis revealed that only five of these tests
actually require a specific default branch name to pass; They were
modified thusly:
$ sed -i '/^ *\. \.\/lib-git-p4\.sh$/i\
GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=master\
export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME\
' t/t980[0167]*.sh t/t9811*.sh
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2020-11-19 00:44:19 +01:00
|
|
|
GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=master
|
|
|
|
export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
|
|
|
|
|
2007-07-10 15:50:49 +02:00
|
|
|
. ./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 &&
|
2017-10-06 21:00:06 +02:00
|
|
|
test_cmp expect actual.named
|
2010-06-10 13:47:23 +02:00
|
|
|
'
|
|
|
|
|
|
|
|
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 &&
|
2017-10-06 21:00:06 +02:00
|
|
|
test_cmp expect actual.named
|
2011-02-18 13:34:19 +01:00
|
|
|
'
|
|
|
|
|
|
|
|
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 &&
|
2017-10-06 21:00:06 +02:00
|
|
|
test_cmp expect actual.named
|
2011-02-18 13:34:19 +01:00
|
|
|
'
|
|
|
|
|
|
|
|
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 &&
|
2017-10-06 21:00:06 +02:00
|
|
|
test_cmp expect actual.named
|
2011-02-21 17:09:12 +01:00
|
|
|
'
|
|
|
|
|
2017-01-19 00:06:05 +01:00
|
|
|
test_expect_success 'name-rev multiple --refs combine inclusive' '
|
|
|
|
git rev-list --left-right --cherry-pick F...E -- bar >actual &&
|
|
|
|
git name-rev --stdin --name-only --refs="*tags/F" --refs="*tags/E" \
|
|
|
|
<actual >actual.named &&
|
2017-10-06 21:00:06 +02:00
|
|
|
test_cmp expect actual.named
|
2017-01-19 00:06:05 +01:00
|
|
|
'
|
|
|
|
|
|
|
|
cat >expect <<EOF
|
|
|
|
<tags/F
|
|
|
|
EOF
|
|
|
|
|
|
|
|
test_expect_success 'name-rev --refs excludes non-matched patterns' '
|
|
|
|
git rev-list --left-right --right-only --cherry-pick F...E -- bar >>expect &&
|
|
|
|
git rev-list --left-right --cherry-pick F...E -- bar >actual &&
|
|
|
|
git name-rev --stdin --name-only --refs="*tags/F" \
|
|
|
|
<actual >actual.named &&
|
2017-10-06 21:00:06 +02:00
|
|
|
test_cmp expect actual.named
|
2017-01-19 00:06:05 +01:00
|
|
|
'
|
|
|
|
|
2017-01-19 00:06:06 +01:00
|
|
|
cat >expect <<EOF
|
|
|
|
<tags/F
|
|
|
|
EOF
|
|
|
|
|
|
|
|
test_expect_success 'name-rev --exclude excludes matched patterns' '
|
|
|
|
git rev-list --left-right --right-only --cherry-pick F...E -- bar >>expect &&
|
|
|
|
git rev-list --left-right --cherry-pick F...E -- bar >actual &&
|
|
|
|
git name-rev --stdin --name-only --refs="*tags/*" --exclude="*E" \
|
|
|
|
<actual >actual.named &&
|
2017-10-06 21:00:06 +02:00
|
|
|
test_cmp expect actual.named
|
2017-01-19 00:06:06 +01:00
|
|
|
'
|
|
|
|
|
2017-01-19 00:06:05 +01:00
|
|
|
test_expect_success 'name-rev --no-refs clears the refs list' '
|
|
|
|
git rev-list --left-right --cherry-pick F...E -- bar >expect &&
|
|
|
|
git name-rev --stdin --name-only --refs="*tags/F" --refs="*tags/E" --no-refs --refs="*tags/G" \
|
|
|
|
<expect >actual &&
|
2017-10-06 21:00:06 +02:00
|
|
|
test_cmp expect actual
|
2017-01-19 00:06:05 +01:00
|
|
|
'
|
|
|
|
|
2011-02-21 17:09:12 +01:00
|
|
|
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 &&
|
2017-10-06 21:00:06 +02:00
|
|
|
test_cmp expect actual.named
|
2011-03-07 13:31:41 +01:00
|
|
|
'
|
|
|
|
|
|
|
|
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 &&
|
2017-10-06 21:00:06 +02:00
|
|
|
test_cmp expect actual.named
|
2011-03-07 13:31:41 +01:00
|
|
|
'
|
|
|
|
|
|
|
|
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 &&
|
2017-10-06 21:00:06 +02:00
|
|
|
test_cmp expect actual.named
|
2011-02-21 17:09:12 +01:00
|
|
|
'
|
|
|
|
|
|
|
|
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 &&
|
2017-10-06 21:00:06 +02:00
|
|
|
test_cmp expect actual.named
|
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 &&
|
2017-10-06 21:00:06 +02:00
|
|
|
test_cmp expect actual.named
|
2011-03-07 13:31:43 +01:00
|
|
|
'
|
|
|
|
|
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 &&
|
2017-10-06 21:00:06 +02:00
|
|
|
test_cmp expect actual
|
2011-04-26 10:24:29 +02:00
|
|
|
'
|
|
|
|
|
|
|
|
cat >expect <<EOF
|
|
|
|
2 2
|
|
|
|
EOF
|
|
|
|
|
|
|
|
test_expect_success '--cherry-mark --count' '
|
|
|
|
git rev-list --cherry-mark --count F...E -- bar > actual &&
|
2017-10-06 21:00:06 +02:00
|
|
|
test_cmp expect actual
|
2011-04-26 10:24:29 +02:00
|
|
|
'
|
|
|
|
|
|
|
|
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 &&
|
2017-10-06 21:00:06 +02:00
|
|
|
test_cmp expect actual
|
2011-04-26 10:24:29 +02:00
|
|
|
'
|
|
|
|
|
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
|
|
|
|
'
|
|
|
|
|
rebase: avoid computing unnecessary patch IDs
The `rebase` family of Git commands avoid applying patches that were
already integrated upstream. They do that by using the revision walking
option that computes the patch IDs of the two sides of the rebase
(local-only patches vs upstream-only ones) and skipping those local
patches whose patch ID matches one of the upstream ones.
In many cases, this causes unnecessary churn, as already the set of
paths touched by a given commit would suffice to determine that an
upstream patch has no local equivalent.
This hurts performance in particular when there are a lot of upstream
patches, and/or large ones.
Therefore, let's introduce the concept of a "diff-header-only" patch ID,
compare those first, and only evaluate the "full" patch ID lazily.
Please note that in contrast to the "full" patch IDs, those
"diff-header-only" patch IDs are prone to collide with one another, as
adjacent commits frequently touch the very same files. Hence we now
have to be careful to allow multiple hash entries with the same hash.
We accomplish that by using the hashmap_add() function that does not even
test for hash collisions. This also allows us to evaluate the full patch ID
lazily, i.e. only when we found commits with matching diff-header-only
patch IDs.
We add a performance test that demonstrates ~1-6% improvement. In
practice this will depend on various factors such as how many upstream
changes and how big those changes are along with whether file system
caches are cold or warm. As Git's test suite has no way of catching
performance regressions, we also add a regression test that verifies
that the full patch ID computation is skipped when the diff-header-only
computation suffices.
Signed-off-by: Kevin Willford <kcwillford@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2016-07-29 18:19:20 +02:00
|
|
|
# Corrupt the object store deliberately to make sure
|
|
|
|
# the object is not even checked for its existence.
|
|
|
|
remove_loose_object () {
|
|
|
|
sha1="$(git rev-parse "$1")" &&
|
|
|
|
remainder=${sha1#??} &&
|
|
|
|
firsttwo=${sha1%$remainder} &&
|
|
|
|
rm .git/objects/$firsttwo/$remainder
|
|
|
|
}
|
|
|
|
|
|
|
|
test_expect_success '--cherry-pick avoids looking at full diffs' '
|
|
|
|
git checkout -b shy-diff &&
|
|
|
|
test_commit dont-look-at-me &&
|
|
|
|
echo Hello >dont-look-at-me.t &&
|
|
|
|
test_tick &&
|
|
|
|
git commit -m tip dont-look-at-me.t &&
|
|
|
|
git checkout -b mainline HEAD^ &&
|
|
|
|
test_commit to-cherry-pick &&
|
|
|
|
remove_loose_object shy-diff^:dont-look-at-me.t &&
|
|
|
|
git rev-list --cherry-pick ...shy-diff
|
|
|
|
'
|
|
|
|
|
2007-07-10 15:50:49 +02:00
|
|
|
test_done
|