1#!/bin/sh 2# Copyright 2005, Ryan Anderson <ryan@michonline.com> 3# 4# This file is licensed under the GPL v2, or a later version 5# at the discretion of Linus Torvalds. 6 7SUBDIRECTORY_OK='Yes' 8OPTIONS_KEEPDASHDASH= 9OPTIONS_STUCKLONG= 10OPTIONS_SPEC='git request-pull [options] start url [end] 11-- 12p show patch text as well 13' 14 15. git-sh-setup 16 17GIT_PAGER= 18export GIT_PAGER 19 20patch= 21while case"$#"in0)break;;esac 22do 23case"$1"in 24-p) 25patch=-p;; 26--) 27shift;break;; 28-*) 29 usage ;; 30*) 31break;; 32esac 33shift 34done 35 36base=$1 url=$2 status=0 37 38test -n"$base"&&test -n"$url"|| usage 39 40baserev=$(git rev-parse --verify --quiet "$base"^0) 41iftest -z"$baserev" 42then 43 die "fatal: Not a valid revision:$base" 44fi 45 46# 47# $3 must be a symbolic ref, a unique ref, or 48# a SHA object expression. It can also be of 49# the format 'local-name:remote-name'. 50# 51local=${3%:*} 52local=${local:-HEAD} 53remote=${3#*:} 54pretty_remote=${remote#refs/} 55pretty_remote=${pretty_remote#heads/} 56head=$(git symbolic-ref -q "$local") 57head=${head:-$(git show-ref --heads --tags "$local" | cut -d' ' -f2)} 58head=${head:-$(git rev-parse --quiet --verify "$local")} 59 60# None of the above? Bad. 61test -z"$head"&& die "fatal: Not a valid revision:$local" 62 63# This also verifies that the resulting head is unique: 64# "git show-ref" could have shown multiple matching refs.. 65headrev=$(git rev-parse --verify --quiet "$head"^0) 66test -z"$headrev"&& die "fatal: Ambiguous revision:$local" 67 68# Was it a branch with a description? 69branch_name=${head#refs/heads/} 70iftest"z$branch_name"="z$headref"|| 71! git config "branch.$branch_name.description">/dev/null 72then 73 branch_name= 74fi 75 76merge_base=$(git merge-base $baserev $headrev)|| 77die "fatal: No commits in common between$baseand$head" 78 79# $head is the refname from the command line. 80# If a ref with the same name as $head exists at the remote 81# and their values match, use that. 82# 83# Otherwise find a random ref that matches $headrev. 84find_matching_ref=' 85 my ($head,$headrev) = (@ARGV); 86 my$pattern= qr{/\Q$head\E$}; 87 my ($found); 88 89 while (<STDIN>) { 90 chomp; 91 my ($sha1,$ref,$deref) = /^(\S+)\s+([^^]+)(\S*)$/; 92 next unless ($sha1eq$headrev); 93 94 if ($refeq$head) { 95$found=$ref; 96 } 97 if ($ref=~$pattern) { 98$found=$ref; 99 } 100 if ($sha1eq$head) { 101$found=$sha1; 102 } 103 } 104 if ($found) { 105 print "$found\n"; 106 } 107' 108 109ref=$(git ls-remote "$url" | @@PERL@@ -e "$find_matching_ref" "${remote:-HEAD}" "$headrev") 110 111iftest -z"$ref" 112then 113echo"warn: No match for commit$headrevfound at$url">&2 114echo"warn: Are you sure you pushed '${remote:-HEAD}' there?">&2 115 status=1 116fi 117 118# Special case: turn "for_linus" to "tags/for_linus" when it is correct 119iftest"$ref"="refs/tags/$pretty_remote" 120then 121 pretty_remote=tags/$pretty_remote 122fi 123 124url=$(git ls-remote --get-url "$url") 125 126git show -s --format='The following changes since commit %H: 127 128 %s (%ci) 129 130are available in the Git repository at: 131'$merge_base&& 132echo"$url$pretty_remote"&& 133git show -s --format=' 134for you to fetch changes up to %H: 135 136 %s (%ci) 137 138----------------------------------------------------------------'$headrev&& 139 140iftest$(git cat-file -t "$head")= tag 141then 142 git cat-file tag "$head"| 143sed-n -e'1,/^$/d'-e'/^-----BEGIN PGP /q'-e p 144echo 145echo"----------------------------------------------------------------" 146fi&& 147 148iftest -n"$branch_name" 149then 150echo"(from the branch description for$branch_namelocal branch)" 151echo 152 git config "branch.$branch_name.description" 153echo"----------------------------------------------------------------" 154fi&& 155 156git shortlog ^$baserev $headrev&& 157git diff-M --stat --summary$patch $merge_base..$headrev|| status=1 158 159exit$status