]> git.ipfire.org Git - thirdparty/git.git/blame - git-request-pull.sh
Sync with 2.16.6
[thirdparty/git.git] / git-request-pull.sh
CommitLineData
53dfac44 1#!/bin/sh
ab421d2c
RA
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
806f36d4 7SUBDIRECTORY_OK='Yes'
50ab6558 8OPTIONS_KEEPDASHDASH=
51ba8ce3 9OPTIONS_STUCKLONG=
133cfaeb
JH
10OPTIONS_SPEC='git request-pull [options] start url [end]
11--
12p show patch text as well
13'
14
806f36d4 15. git-sh-setup
ab421d2c 16
653a31c1
MM
17GIT_PAGER=
18export GIT_PAGER
19
133cfaeb
JH
20patch=
21while case "$#" in 0) break ;; esac
22do
23 case "$1" in
24 -p)
25 patch=-p ;;
26 --)
27 shift; break ;;
28 -*)
29 usage ;;
30 *)
31 break ;;
32 esac
33 shift
34done
35
024d34cb 36base=$1 url=$2 status=0
d0504645 37
3c9f1e7c 38test -n "$base" && test -n "$url" || usage
ace33bf9
DW
39
40baserev=$(git rev-parse --verify --quiet "$base"^0)
41if test -z "$baserev"
42then
43 die "fatal: Not a valid revision: $base"
44fi
45
024d34cb
LT
46#
47# $3 must be a symbolic ref, a unique ref, or
dc2eacc5
LT
48# a SHA object expression. It can also be of
49# the format 'local-name:remote-name'.
024d34cb 50#
dc2eacc5
LT
51local=${3%:*}
52local=${local:-HEAD}
53remote=${3#*:}
5aae66bd
JH
54pretty_remote=${remote#refs/}
55pretty_remote=${pretty_remote#heads/}
dc2eacc5
LT
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")}
024d34cb
LT
59
60# None of the above? Bad.
dc2eacc5 61test -z "$head" && die "fatal: Not a valid revision: $local"
024d34cb
LT
62
63# This also verifies that the resulting head is unique:
64# "git show-ref" could have shown multiple matching refs..
ace33bf9 65headrev=$(git rev-parse --verify --quiet "$head"^0)
dc2eacc5 66test -z "$headrev" && die "fatal: Ambiguous revision: $local"
024d34cb
LT
67
68# Was it a branch with a description?
69branch_name=${head#refs/heads/}
70if test "z$branch_name" = "z$headref" ||
71 ! git config "branch.$branch_name.description" >/dev/null
ace33bf9 72then
024d34cb 73 branch_name=
ace33bf9 74fi
ab421d2c 75
3c9f1e7c 76merge_base=$(git merge-base $baserev $headrev) ||
ff06c743
SP
77die "fatal: No commits in common between $base and $head"
78
024d34cb
LT
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.
682853e6
JH
82#
83# Otherwise find a random ref that matches $headrev.
fe46fa9d 84find_matching_ref='
dc2eacc5
LT
85 my ($head,$headrev) = (@ARGV);
86 my ($found);
fe46fa9d 87
fe46fa9d 88 while (<STDIN>) {
dc2eacc5 89 chomp;
024d34cb 90 my ($sha1, $ref, $deref) = /^(\S+)\s+([^^]+)(\S*)$/;
dc2eacc5
LT
91 my ($pattern);
92 next unless ($sha1 eq $headrev);
93
94 $pattern="/$head\$";
95 if ($ref eq $head) {
96 $found = $ref;
97 }
98 if ($ref =~ /$pattern/) {
99 $found = $ref;
682853e6 100 }
dc2eacc5 101 if ($sha1 eq $head) {
024d34cb 102 $found = $sha1;
fe46fa9d
JH
103 }
104 }
dc2eacc5 105 if ($found) {
fe46fa9d
JH
106 print "$found\n";
107 }
108'
109
dc2eacc5 110ref=$(git ls-remote "$url" | @@PERL@@ -e "$find_matching_ref" "${remote:-HEAD}" "$headrev")
024d34cb
LT
111
112if test -z "$ref"
113then
dc2eacc5
LT
114 echo "warn: No match for commit $headrev found at $url" >&2
115 echo "warn: Are you sure you pushed '${remote:-HEAD}' there?" >&2
024d34cb
LT
116 status=1
117fi
fe46fa9d 118
d952cbb1
JH
119# Special case: turn "for_linus" to "tags/for_linus" when it is correct
120if test "$ref" = "refs/tags/$pretty_remote"
121then
122 pretty_remote=tags/$pretty_remote
123fi
124
1a927775 125url=$(git ls-remote --get-url "$url")
ff06c743 126
10eb0007 127git show -s --format='The following changes since commit %H:
ab421d2c 128
10eb0007
MV
129 %s (%ci)
130
e66d7c37 131are available in the Git repository at:
b7e642ec 132' $merge_base &&
5aae66bd 133echo " $url $pretty_remote" &&
cf731666
JH
134git show -s --format='
135for you to fetch changes up to %H:
136
137 %s (%ci)
138
139----------------------------------------------------------------' $headrev &&
ab421d2c 140
4b14ec87 141if test $(git cat-file -t "$head") = tag
c0168147 142then
4b14ec87 143 git cat-file tag "$head" |
d0504645
JH
144 sed -n -e '1,/^$/d' -e '/^-----BEGIN PGP /q' -e p
145 echo
4b14ec87 146 echo "----------------------------------------------------------------"
d0504645
JH
147fi &&
148
c0168147 149if test -n "$branch_name"
d0504645 150then
fe46fa9d 151 echo "(from the branch description for $branch_name local branch)"
c0168147
JH
152 echo
153 git config "branch.$branch_name.description"
154 echo "----------------------------------------------------------------"
155fi &&
d0504645 156
53dfac44 157git shortlog ^$baserev $headrev &&
cf731666
JH
158git diff -M --stat --summary $patch $merge_base..$headrev || status=1
159
ff06c743 160exit $status