]> git.ipfire.org Git - thirdparty/git.git/blame - git-request-pull.sh
request-pull: update the "pull" command generation logic
[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
3eb91bfc
SN
7USAGE='<start> <url> [<end>]'
8LONG_USAGE='Summarizes the changes between two commits to the standard output,
9and includes the given URL in the generated summary.'
806f36d4 10SUBDIRECTORY_OK='Yes'
50ab6558 11OPTIONS_KEEPDASHDASH=
133cfaeb
JH
12OPTIONS_SPEC='git request-pull [options] start url [end]
13--
14p show patch text as well
15'
16
806f36d4 17. git-sh-setup
ab421d2c 18
653a31c1
MM
19GIT_PAGER=
20export GIT_PAGER
21
133cfaeb
JH
22patch=
23while case "$#" in 0) break ;; esac
24do
25 case "$1" in
26 -p)
27 patch=-p ;;
28 --)
29 shift; break ;;
30 -*)
31 usage ;;
32 *)
33 break ;;
34 esac
35 shift
36done
37
c0168147
JH
38base=$1 url=$2 head=${3-HEAD} status=0 branch_name=
39
40headref=$(git symbolic-ref -q "$head")
41if git show-ref -q --verify "$headref"
42then
43 branch_name=${headref#refs/heads/}
44 if test "z$branch_name" = "z$headref" ||
45 ! git config "branch.$branch_name.description" >/dev/null
46 then
47 branch_name=
48 fi
49fi
ab421d2c 50
d0504645
JH
51tag_name=$(git describe --exact "$head^0" 2>/dev/null)
52
3c9f1e7c
JH
53test -n "$base" && test -n "$url" || usage
54baserev=$(git rev-parse --verify "$base"^0) &&
55headrev=$(git rev-parse --verify "$head"^0) || exit
ab421d2c 56
3c9f1e7c 57merge_base=$(git merge-base $baserev $headrev) ||
ff06c743
SP
58die "fatal: No commits in common between $base and $head"
59
fe46fa9d
JH
60# $head is the token given from the command line. If a ref with that
61# name exists at the remote and their values match, we should use it.
62# Otherwise find a ref that matches $headrev.
63find_matching_ref='
64 sub abbr {
65 my $ref = shift;
66 if ($ref =~ s|refs/heads/||) {
67 return $ref;
68 } elsif ($ref =~ s|refs/tags/||) {
69 return "tag $ref";
70 } else {
71 return $ref;
72 }
73 }
74
75 my ($exact, $found);
76 while (<STDIN>) {
77 my ($sha1, $ref, $deref) = /^(\S+)\s+(\S+?)(\^\{\})?$/;
78 next unless ($sha1 eq $ARGV[1]);
79 $found = abbr($ref);
80 if ($ref =~ m|/\Q$ARGV[0]\E$|) {
81 $exact = $found;
82 last;
83 }
84 }
85 if ($exact) {
86 print "$exact\n";
87 } elsif ($found) {
88 print "$found\n";
89 }
90'
91
92ref=$(git ls-remote "$url" | perl -e "$find_matching_ref" "$head" "$headrev")
93
1a927775 94url=$(git ls-remote --get-url "$url")
ff06c743 95
10eb0007 96git show -s --format='The following changes since commit %H:
ab421d2c 97
10eb0007
MV
98 %s (%ci)
99
cf731666
JH
100are available in the git repository at:
101' $baserev &&
fe46fa9d 102echo " $url${ref+ $ref}" &&
cf731666
JH
103git show -s --format='
104for you to fetch changes up to %H:
105
106 %s (%ci)
107
108----------------------------------------------------------------' $headrev &&
ab421d2c 109
c0168147
JH
110if test -n "$branch_name"
111then
fe46fa9d 112 echo "(from the branch description for $branch_name local branch)"
c0168147
JH
113 echo
114 git config "branch.$branch_name.description"
d0504645
JH
115fi &&
116
117if test -n "$tag_name"
118then
119 git cat-file tag "$tag_name" |
120 sed -n -e '1,/^$/d' -e '/^-----BEGIN PGP /q' -e p
121 echo
122fi &&
123
124if test -n "$branch_name" || test -n "$tag_name"
125then
c0168147
JH
126 echo "----------------------------------------------------------------"
127fi &&
d0504645 128
53dfac44 129git shortlog ^$baserev $headrev &&
cf731666
JH
130git diff -M --stat --summary $patch $merge_base..$headrev || status=1
131
fe46fa9d 132if test -z "$ref"
cf731666
JH
133then
134 echo "warn: No branch of $url is at:" >&2
135 git show -s --format='warn: %h: %s' $headrev >&2
136 echo "warn: Are you sure you pushed '$head' there?" >&2
137 status=1
138fi
ff06c743 139exit $status