Brandon Casey | 53dfac4 | 2010-06-01 19:13:41 -0500 | [diff] [blame] | 1 | #!/bin/sh |
Ryan Anderson | ab421d2 | 2005-07-26 03:30:36 -0400 | [diff] [blame] | 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 | |
Stefan Naewe | 3eb91bf | 2008-11-17 09:57:19 +0100 | [diff] [blame] | 7 | USAGE='<start> <url> [<end>]' |
| 8 | LONG_USAGE='Summarizes the changes between two commits to the standard output, |
| 9 | and includes the given URL in the generated summary.' |
freku045@student.liu.se | 806f36d | 2005-12-13 23:30:31 +0100 | [diff] [blame] | 10 | SUBDIRECTORY_OK='Yes' |
Jonathan Nieder | 50ab655 | 2010-04-24 07:15:37 -0500 | [diff] [blame] | 11 | OPTIONS_KEEPDASHDASH= |
Nicolas Vigier | 51ba8ce | 2014-02-01 02:17:59 +0000 | [diff] [blame] | 12 | OPTIONS_STUCKLONG= |
Junio C Hamano | 133cfae | 2009-07-27 14:27:47 -0700 | [diff] [blame] | 13 | OPTIONS_SPEC='git request-pull [options] start url [end] |
| 14 | -- |
| 15 | p show patch text as well |
| 16 | ' |
| 17 | |
freku045@student.liu.se | 806f36d | 2005-12-13 23:30:31 +0100 | [diff] [blame] | 18 | . git-sh-setup |
Ryan Anderson | ab421d2 | 2005-07-26 03:30:36 -0400 | [diff] [blame] | 19 | |
Michal Marek | 653a31c | 2009-07-01 11:40:30 +0200 | [diff] [blame] | 20 | GIT_PAGER= |
| 21 | export GIT_PAGER |
| 22 | |
Junio C Hamano | 133cfae | 2009-07-27 14:27:47 -0700 | [diff] [blame] | 23 | patch= |
| 24 | while case "$#" in 0) break ;; esac |
| 25 | do |
| 26 | case "$1" in |
| 27 | -p) |
| 28 | patch=-p ;; |
| 29 | --) |
| 30 | shift; break ;; |
| 31 | -*) |
| 32 | usage ;; |
| 33 | *) |
| 34 | break ;; |
| 35 | esac |
| 36 | shift |
| 37 | done |
| 38 | |
Linus Torvalds | 024d34c | 2014-01-22 12:32:30 -0800 | [diff] [blame] | 39 | base=$1 url=$2 status=0 |
Junio C Hamano | d050464 | 2011-11-09 05:05:00 -0800 | [diff] [blame] | 40 | |
Junio C Hamano | 3c9f1e7 | 2011-09-16 11:22:57 -0700 | [diff] [blame] | 41 | test -n "$base" && test -n "$url" || usage |
Dirk Wallenstein | ace33bf | 2013-07-17 19:28:11 +0200 | [diff] [blame] | 42 | |
| 43 | baserev=$(git rev-parse --verify --quiet "$base"^0) |
| 44 | if test -z "$baserev" |
| 45 | then |
| 46 | die "fatal: Not a valid revision: $base" |
| 47 | fi |
| 48 | |
Linus Torvalds | 024d34c | 2014-01-22 12:32:30 -0800 | [diff] [blame] | 49 | # |
| 50 | # $3 must be a symbolic ref, a unique ref, or |
Linus Torvalds | dc2eacc | 2014-01-22 15:23:48 -0800 | [diff] [blame] | 51 | # a SHA object expression. It can also be of |
| 52 | # the format 'local-name:remote-name'. |
Linus Torvalds | 024d34c | 2014-01-22 12:32:30 -0800 | [diff] [blame] | 53 | # |
Linus Torvalds | dc2eacc | 2014-01-22 15:23:48 -0800 | [diff] [blame] | 54 | local=${3%:*} |
| 55 | local=${local:-HEAD} |
| 56 | remote=${3#*:} |
Junio C Hamano | 5aae66b | 2014-02-25 13:44:46 -0800 | [diff] [blame] | 57 | pretty_remote=${remote#refs/} |
| 58 | pretty_remote=${pretty_remote#heads/} |
Linus Torvalds | dc2eacc | 2014-01-22 15:23:48 -0800 | [diff] [blame] | 59 | head=$(git symbolic-ref -q "$local") |
| 60 | head=${head:-$(git show-ref --heads --tags "$local" | cut -d' ' -f2)} |
| 61 | head=${head:-$(git rev-parse --quiet --verify "$local")} |
Linus Torvalds | 024d34c | 2014-01-22 12:32:30 -0800 | [diff] [blame] | 62 | |
| 63 | # None of the above? Bad. |
Linus Torvalds | dc2eacc | 2014-01-22 15:23:48 -0800 | [diff] [blame] | 64 | test -z "$head" && die "fatal: Not a valid revision: $local" |
Linus Torvalds | 024d34c | 2014-01-22 12:32:30 -0800 | [diff] [blame] | 65 | |
| 66 | # This also verifies that the resulting head is unique: |
| 67 | # "git show-ref" could have shown multiple matching refs.. |
Dirk Wallenstein | ace33bf | 2013-07-17 19:28:11 +0200 | [diff] [blame] | 68 | headrev=$(git rev-parse --verify --quiet "$head"^0) |
Linus Torvalds | dc2eacc | 2014-01-22 15:23:48 -0800 | [diff] [blame] | 69 | test -z "$headrev" && die "fatal: Ambiguous revision: $local" |
Linus Torvalds | 024d34c | 2014-01-22 12:32:30 -0800 | [diff] [blame] | 70 | |
| 71 | # Was it a branch with a description? |
| 72 | branch_name=${head#refs/heads/} |
| 73 | if test "z$branch_name" = "z$headref" || |
| 74 | ! git config "branch.$branch_name.description" >/dev/null |
Dirk Wallenstein | ace33bf | 2013-07-17 19:28:11 +0200 | [diff] [blame] | 75 | then |
Linus Torvalds | 024d34c | 2014-01-22 12:32:30 -0800 | [diff] [blame] | 76 | branch_name= |
Dirk Wallenstein | ace33bf | 2013-07-17 19:28:11 +0200 | [diff] [blame] | 77 | fi |
Ryan Anderson | ab421d2 | 2005-07-26 03:30:36 -0400 | [diff] [blame] | 78 | |
Junio C Hamano | 3c9f1e7 | 2011-09-16 11:22:57 -0700 | [diff] [blame] | 79 | merge_base=$(git merge-base $baserev $headrev) || |
Shawn O. Pearce | ff06c74 | 2007-05-01 02:08:23 -0400 | [diff] [blame] | 80 | die "fatal: No commits in common between $base and $head" |
| 81 | |
Linus Torvalds | 024d34c | 2014-01-22 12:32:30 -0800 | [diff] [blame] | 82 | # $head is the refname from the command line. |
| 83 | # If a ref with the same name as $head exists at the remote |
| 84 | # and their values match, use that. |
Junio C Hamano | 682853e | 2012-06-01 12:38:19 -0700 | [diff] [blame] | 85 | # |
| 86 | # Otherwise find a random ref that matches $headrev. |
Junio C Hamano | fe46fa9 | 2011-12-16 09:00:11 -0800 | [diff] [blame] | 87 | find_matching_ref=' |
Linus Torvalds | dc2eacc | 2014-01-22 15:23:48 -0800 | [diff] [blame] | 88 | my ($head,$headrev) = (@ARGV); |
| 89 | my ($found); |
Junio C Hamano | fe46fa9 | 2011-12-16 09:00:11 -0800 | [diff] [blame] | 90 | |
Junio C Hamano | fe46fa9 | 2011-12-16 09:00:11 -0800 | [diff] [blame] | 91 | while (<STDIN>) { |
Linus Torvalds | dc2eacc | 2014-01-22 15:23:48 -0800 | [diff] [blame] | 92 | chomp; |
Linus Torvalds | 024d34c | 2014-01-22 12:32:30 -0800 | [diff] [blame] | 93 | my ($sha1, $ref, $deref) = /^(\S+)\s+([^^]+)(\S*)$/; |
Linus Torvalds | dc2eacc | 2014-01-22 15:23:48 -0800 | [diff] [blame] | 94 | my ($pattern); |
| 95 | next unless ($sha1 eq $headrev); |
| 96 | |
| 97 | $pattern="/$head\$"; |
| 98 | if ($ref eq $head) { |
| 99 | $found = $ref; |
Junio C Hamano | fe46fa9 | 2011-12-16 09:00:11 -0800 | [diff] [blame] | 100 | } |
Linus Torvalds | dc2eacc | 2014-01-22 15:23:48 -0800 | [diff] [blame] | 101 | if ($ref =~ /$pattern/) { |
| 102 | $found = $ref; |
| 103 | } |
| 104 | if ($sha1 eq $head) { |
Linus Torvalds | 024d34c | 2014-01-22 12:32:30 -0800 | [diff] [blame] | 105 | $found = $sha1; |
Junio C Hamano | 682853e | 2012-06-01 12:38:19 -0700 | [diff] [blame] | 106 | } |
Junio C Hamano | fe46fa9 | 2011-12-16 09:00:11 -0800 | [diff] [blame] | 107 | } |
Linus Torvalds | dc2eacc | 2014-01-22 15:23:48 -0800 | [diff] [blame] | 108 | if ($found) { |
Junio C Hamano | fe46fa9 | 2011-12-16 09:00:11 -0800 | [diff] [blame] | 109 | print "$found\n"; |
| 110 | } |
| 111 | ' |
| 112 | |
Linus Torvalds | dc2eacc | 2014-01-22 15:23:48 -0800 | [diff] [blame] | 113 | ref=$(git ls-remote "$url" | @@PERL@@ -e "$find_matching_ref" "${remote:-HEAD}" "$headrev") |
Linus Torvalds | 024d34c | 2014-01-22 12:32:30 -0800 | [diff] [blame] | 114 | |
| 115 | if test -z "$ref" |
| 116 | then |
Linus Torvalds | dc2eacc | 2014-01-22 15:23:48 -0800 | [diff] [blame] | 117 | echo "warn: No match for commit $headrev found at $url" >&2 |
| 118 | echo "warn: Are you sure you pushed '${remote:-HEAD}' there?" >&2 |
Linus Torvalds | 024d34c | 2014-01-22 12:32:30 -0800 | [diff] [blame] | 119 | status=1 |
| 120 | fi |
Junio C Hamano | fe46fa9 | 2011-12-16 09:00:11 -0800 | [diff] [blame] | 121 | |
Junio C Hamano | d952cbb | 2014-05-16 10:18:25 -0700 | [diff] [blame] | 122 | # Special case: turn "for_linus" to "tags/for_linus" when it is correct |
| 123 | if test "$ref" = "refs/tags/$pretty_remote" |
| 124 | then |
| 125 | pretty_remote=tags/$pretty_remote |
| 126 | fi |
| 127 | |
Uwe Kleine-König | 1a92777 | 2011-03-01 10:21:37 +0100 | [diff] [blame] | 128 | url=$(git ls-remote --get-url "$url") |
Shawn O. Pearce | ff06c74 | 2007-05-01 02:08:23 -0400 | [diff] [blame] | 129 | |
Miklos Vajna | 10eb000 | 2010-01-29 15:17:59 +0100 | [diff] [blame] | 130 | git show -s --format='The following changes since commit %H: |
Ryan Anderson | ab421d2 | 2005-07-26 03:30:36 -0400 | [diff] [blame] | 131 | |
Miklos Vajna | 10eb000 | 2010-01-29 15:17:59 +0100 | [diff] [blame] | 132 | %s (%ci) |
| 133 | |
Junio C Hamano | cf73166 | 2011-09-16 11:37:08 -0700 | [diff] [blame] | 134 | are available in the git repository at: |
Junio C Hamano | b7e642e | 2012-01-10 21:45:52 -0800 | [diff] [blame] | 135 | ' $merge_base && |
Junio C Hamano | 5aae66b | 2014-02-25 13:44:46 -0800 | [diff] [blame] | 136 | echo " $url $pretty_remote" && |
Junio C Hamano | cf73166 | 2011-09-16 11:37:08 -0700 | [diff] [blame] | 137 | git show -s --format=' |
| 138 | for you to fetch changes up to %H: |
| 139 | |
| 140 | %s (%ci) |
| 141 | |
| 142 | ----------------------------------------------------------------' $headrev && |
Ryan Anderson | ab421d2 | 2005-07-26 03:30:36 -0400 | [diff] [blame] | 143 | |
Junio C Hamano | 4b14ec8 | 2014-01-29 15:08:05 -0800 | [diff] [blame] | 144 | if test $(git cat-file -t "$head") = tag |
| 145 | then |
| 146 | git cat-file tag "$head" | |
| 147 | sed -n -e '1,/^$/d' -e '/^-----BEGIN PGP /q' -e p |
| 148 | echo |
| 149 | echo "----------------------------------------------------------------" |
| 150 | fi && |
| 151 | |
Junio C Hamano | c016814 | 2011-09-20 15:52:57 -0700 | [diff] [blame] | 152 | if test -n "$branch_name" |
| 153 | then |
Junio C Hamano | fe46fa9 | 2011-12-16 09:00:11 -0800 | [diff] [blame] | 154 | echo "(from the branch description for $branch_name local branch)" |
Junio C Hamano | c016814 | 2011-09-20 15:52:57 -0700 | [diff] [blame] | 155 | echo |
| 156 | git config "branch.$branch_name.description" |
| 157 | echo "----------------------------------------------------------------" |
| 158 | fi && |
Junio C Hamano | d050464 | 2011-11-09 05:05:00 -0800 | [diff] [blame] | 159 | |
Brandon Casey | 53dfac4 | 2010-06-01 19:13:41 -0500 | [diff] [blame] | 160 | git shortlog ^$baserev $headrev && |
Junio C Hamano | cf73166 | 2011-09-16 11:37:08 -0700 | [diff] [blame] | 161 | git diff -M --stat --summary $patch $merge_base..$headrev || status=1 |
| 162 | |
Shawn O. Pearce | ff06c74 | 2007-05-01 02:08:23 -0400 | [diff] [blame] | 163 | exit $status |