summaryrefslogtreecommitdiff
path: root/t/t5500-fetch-pack.sh
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2011-12-13 00:44:40 (GMT)
committerJunio C Hamano <gitster@pobox.com>2011-12-13 18:09:07 (GMT)
commite9d866e32c0c7411a005cb6d6549d3a89f8102ee (patch)
tree7d1be4b6ac6b1d8ffa0a1418a371e77c5d1efb36 /t/t5500-fetch-pack.sh
parentafe7c5ff1f7f6741d35f9852a766d151da23d7d8 (diff)
downloadgit-e9d866e32c0c7411a005cb6d6549d3a89f8102ee.zip
git-e9d866e32c0c7411a005cb6d6549d3a89f8102ee.tar.gz
git-e9d866e32c0c7411a005cb6d6549d3a89f8102ee.tar.bz2
t5500: give fully-qualified refs to fetch-pack
The fetch-pack documentation is very clear that refs given on the command line are to be full refs: <refs>...:: The remote heads to update from. This is relative to $GIT_DIR (e.g. "HEAD", "refs/heads/master"). When unspecified, update from all heads the remote side has. and this has been the case since fetch-pack was originally documented in 8b3d9dc ([PATCH] Documentation: clone/fetch/upload., 2005-07-14). Let's follow our own documentation to set a good example, and to avoid breaking when this restriction is enforced in the next patch. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t5500-fetch-pack.sh')
-rwxr-xr-xt/t5500-fetch-pack.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/t5500-fetch-pack.sh b/t/t5500-fetch-pack.sh
index bafcca7..9bf69e9 100755
--- a/t/t5500-fetch-pack.sh
+++ b/t/t5500-fetch-pack.sh
@@ -97,7 +97,7 @@ test_expect_success 'setup' '
git symbolic-ref HEAD refs/heads/B
'
-pull_to_client 1st "B A" $((11*3))
+pull_to_client 1st "refs/heads/B refs/heads/A" $((11*3))
test_expect_success 'post 1st pull setup' '
add A11 $A10 &&
@@ -110,9 +110,9 @@ test_expect_success 'post 1st pull setup' '
done
'
-pull_to_client 2nd "B" $((64*3))
+pull_to_client 2nd "refs/heads/B" $((64*3))
-pull_to_client 3rd "A" $((1*3))
+pull_to_client 3rd "refs/heads/A" $((1*3))
test_expect_success 'clone shallow' '
git clone --depth 2 "file://$(pwd)/." shallow