2 # Copyright 2005, Ryan Anderson <ryan@michonline.com>
4 # This file is licensed under the GPL v2, or a later version
5 # at the discretion of Linus Torvalds.
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.'
11 OPTIONS_SPEC
='git request-pull [options] start url [end]
13 p show patch text as well
23 while case "$#" in 0) break ;; esac
45 baserev
=`git rev-parse --verify "$base"^0` &&
46 headrev
=`git rev-parse --verify "$head"^0` ||
exit
48 merge_base
=`git merge-base $baserev $headrev` ||
49 die
"fatal: No commits in common between $base and $head"
51 branch
=$
(git ls-remote
"$url" \
52 |
sed -n -e "/^$headrev refs.heads./{
57 url
=$
(get_remote_url
"$url")
58 if [ -z "$branch" ]; then
59 echo "warn: No branch of $url is at:" >&2
60 git log
--max-count=1 --pretty='tformat:warn: %h: %s' $headrev >&2
61 echo "warn: Are you sure you pushed $head there?" >&2
64 branch
=..BRANCH.NOT.VERIFIED..
68 echo "The following changes since commit $baserev:"
69 git shortlog
--max-count=1 $baserev |
sed -e 's/^\(.\)/ \1/'
71 echo "are available in the git repository at:"
76 git shortlog ^
$baserev $headrev
77 git
diff -M --stat --summary $patch $merge_base..
$headrev