diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-05-16 10:18:25 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-05-16 10:18:25 -0700 |
commit | d952cbb1908b54c6a04f37c8b0924a49cdb5997d (patch) | |
tree | 76bfb38d3056b6ef6afcd76aaed2230db0d68d9e /t | |
parent | ec445074e0ac4d6003acd21c512c43c8fdb8be86 (diff) | |
download | git-d952cbb1908b54c6a04f37c8b0924a49cdb5997d.tar.gz git-d952cbb1908b54c6a04f37c8b0924a49cdb5997d.tar.xz |
request-pull: resurrect for-linus -> tags/for-linus DWIM
Older versions of Git before v1.7.10 did not DWIM
$ git pull $URL for-linus
to the tag "tags/for-linus" and the users were required to say
$ git pull $URL tags/for-linus
instead. Because newer versions of Git works either way,
request-pull used to show tags/for-linus when asked
$ git request-pull origin/master $URL for-linus
The recent updates broke this and in the output we see "for-linus"
without the "tags/" prefix.
As v1.7.10 is more than 2 years old, this should matter very little
in practice, but resurrecting it is very simple.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-x | t/t5150-request-pull.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/t/t5150-request-pull.sh b/t/t5150-request-pull.sh index 75d6b3843..93e2c65de 100755 --- a/t/t5150-request-pull.sh +++ b/t/t5150-request-pull.sh @@ -223,7 +223,13 @@ test_expect_success 'pull request format' ' 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_i18ncmp expect request.fuzzy && + + ( + cd local && + git request-pull initial "$downstream_url" full + ) >request && + grep ' tags/full$' ' test_expect_success 'request-pull ignores OPTIONS_KEEPDASHDASH poison' ' |