summaryrefslogtreecommitdiff
path: root/git-request-pull.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2012-02-01 05:06:06 (GMT)
committerJunio C Hamano <gitster@pobox.com>2012-02-01 05:27:58 (GMT)
commit2ad9ba0382ca0d9a36746db804d1bf01f5281b8e (patch)
treee64644544cc8f69a5ecc1759ed061c2fab571223 /git-request-pull.sh
parent11b17afc933446c3afdbed72afaa440348f2b0ff (diff)
downloadgit-2ad9ba0382ca0d9a36746db804d1bf01f5281b8e.zip
git-2ad9ba0382ca0d9a36746db804d1bf01f5281b8e.tar.gz
git-2ad9ba0382ca0d9a36746db804d1bf01f5281b8e.tar.bz2
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 'git-request-pull.sh')
-rwxr-xr-xgit-request-pull.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-request-pull.sh b/git-request-pull.sh
index 64960d6..e6438e2 100755
--- a/git-request-pull.sh
+++ b/git-request-pull.sh
@@ -63,7 +63,7 @@ die "fatal: No commits in common between $base and $head"
find_matching_ref='
sub abbr {
my $ref = shift;
- if ($ref =~ s|refs/heads/|| || $ref =~ s|refs/tags/||) {
+ if ($ref =~ s|^refs/heads/|| || $ref =~ s|^refs/tags/|tags/|) {
return $ref;
} else {
return $ref;