diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-01-31 21:06:06 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-01-31 21:27:58 -0800 |
commit | 2ad9ba0382ca0d9a36746db804d1bf01f5281b8e (patch) | |
tree | e64644544cc8f69a5ecc1759ed061c2fab571223 /t | |
parent | pulling signed tag: add howto document (diff) | |
download | tgif-2ad9ba0382ca0d9a36746db804d1bf01f5281b8e.tar.xz |
request-pull: explicitly ask tags/$name to be pulled
When asking for a tag to be pulled, disambiguate by leaving tags/ prefix
in front of the name of the tag. E.g.
... in the git repository at:
git://example.com/git/git.git/ tags/v1.2.3
for you to fetch changes up to 123456...
This way, older versions of "git pull" can be used to respond to such a
request more easily, as "git pull $URL v1.2.3" did not DWIM to fetch
v1.2.3 tag in older versions. Also this makes it clearer for humans that
the pull request is made for a tag and he should anticipate a signed one.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-x | t/t5150-request-pull.sh | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/t/t5150-request-pull.sh b/t/t5150-request-pull.sh index da25bc2d1f..7c1dc641de 100755 --- a/t/t5150-request-pull.sh +++ b/t/t5150-request-pull.sh @@ -179,11 +179,7 @@ test_expect_success 'request names an appropriate branch' ' read repository && read branch } <digest && - { - test "$branch" = full || - test "$branch" = master || - test "$branch" = for-upstream - } + test "$branch" = tags/full ' |