summaryrefslogtreecommitdiff
path: root/t/t5150-request-pull.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-02-25 21:44:46 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-02-25 21:45:38 (GMT)
commit5aae66bd998429959d89c5bedf0bd8175a2b3f33 (patch)
tree7ea854d749537e03fc2bae572ad87dd0d41f1d9d /t/t5150-request-pull.sh
parent28ad685f70f93133f2c872e4b1ea2a8f87eaebb5 (diff)
downloadgit-5aae66bd998429959d89c5bedf0bd8175a2b3f33.zip
git-5aae66bd998429959d89c5bedf0bd8175a2b3f33.tar.gz
git-5aae66bd998429959d89c5bedf0bd8175a2b3f33.tar.bz2
request-pull: resurrect "pretty refname" feature
When asking to fetch/pull a branch whose name is B or a tag whose name is T, we used to show the command to run as: git pull $URL B git pull $URL tags/T even when B and T were spelled in a more qualified way in order to disambiguate, e.g. heads/B or refs/tags/T, but the recent update lost this feature. Resurrect it. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t5150-request-pull.sh')
-rwxr-xr-xt/t5150-request-pull.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/t/t5150-request-pull.sh b/t/t5150-request-pull.sh
index 2622057..75d6b38 100755
--- a/t/t5150-request-pull.sh
+++ b/t/t5150-request-pull.sh
@@ -216,8 +216,14 @@ test_expect_success 'pull request format' '
git request-pull initial "$downstream_url" tags/full >../request
) &&
<request sed -nf fuzz.sed >request.fuzzy &&
- test_i18ncmp expect request.fuzzy
+ test_i18ncmp expect request.fuzzy &&
+ (
+ cd local &&
+ git request-pull initial "$downstream_url" tags/full:refs/tags/full
+ ) >request &&
+ sed -nf fuzz.sed <request >request.fuzzy &&
+ test_i18ncmp expect request.fuzzy
'
test_expect_success 'request-pull ignores OPTIONS_KEEPDASHDASH poison' '