2005-07-26 09:30:36 +02:00
|
|
|
#!/bin/sh -e
|
|
|
|
# Copyright 2005, Ryan Anderson <ryan@michonline.com>
|
|
|
|
#
|
|
|
|
# This file is licensed under the GPL v2, or a later version
|
|
|
|
# at the discretion of Linus Torvalds.
|
|
|
|
|
2005-12-13 23:30:31 +01:00
|
|
|
USAGE='<commit> <url> [<head>]'
|
|
|
|
LONG_USAGE='Summarizes the changes since <commit> to the standard output,
|
|
|
|
and includes <url> in the message generated.'
|
|
|
|
SUBDIRECTORY_OK='Yes'
|
|
|
|
. git-sh-setup
|
2007-05-01 08:08:23 +02:00
|
|
|
. git-parse-remote
|
2005-07-26 09:30:36 +02:00
|
|
|
|
2007-05-01 08:08:23 +02:00
|
|
|
base=$1
|
2005-07-26 20:47:31 +02:00
|
|
|
url=$2
|
|
|
|
head=${3-HEAD}
|
2005-07-26 09:30:36 +02:00
|
|
|
|
2007-05-01 08:08:23 +02:00
|
|
|
[ "$base" ] || usage
|
2005-07-26 09:30:36 +02:00
|
|
|
[ "$url" ] || usage
|
|
|
|
|
2007-07-03 07:52:14 +02:00
|
|
|
baserev=`git rev-parse --verify "$base"^0` &&
|
|
|
|
headrev=`git rev-parse --verify "$head"^0` || exit
|
2005-07-26 09:30:36 +02:00
|
|
|
|
2007-05-01 08:08:23 +02:00
|
|
|
merge_base=`git merge-base $baserev $headrev` ||
|
|
|
|
die "fatal: No commits in common between $base and $head"
|
|
|
|
|
|
|
|
url="`get_remote_url "$url"`"
|
|
|
|
branch=`git peek-remote "$url" \
|
|
|
|
| sed -n -e "/^$headrev refs.heads./{
|
|
|
|
s/^.* refs.heads.//
|
|
|
|
p
|
|
|
|
q
|
|
|
|
}"`
|
|
|
|
if [ -z "$branch" ]; then
|
|
|
|
echo "warn: No branch of $url is at:" >&2
|
|
|
|
git log --max-count=1 --pretty='format:warn: %h: %s' $headrev >&2
|
|
|
|
echo "warn: Are you sure you pushed $head there?" >&2
|
|
|
|
echo >&2
|
|
|
|
echo >&2
|
|
|
|
branch=..BRANCH.NOT.VERIFIED..
|
|
|
|
status=1
|
|
|
|
fi
|
|
|
|
|
|
|
|
PAGER=
|
|
|
|
export PAGER
|
2005-07-26 20:47:31 +02:00
|
|
|
echo "The following changes since commit $baserev:"
|
2007-05-01 08:08:23 +02:00
|
|
|
git shortlog --max-count=1 $baserev | sed -e 's/^\(.\)/ \1/'
|
2005-07-26 09:30:36 +02:00
|
|
|
|
2007-05-01 08:08:23 +02:00
|
|
|
echo "are available in the git repository at:"
|
2005-07-26 20:47:31 +02:00
|
|
|
echo
|
2007-05-01 08:08:23 +02:00
|
|
|
echo " $url $branch"
|
2005-07-26 20:47:31 +02:00
|
|
|
echo
|
2005-07-26 09:30:36 +02:00
|
|
|
|
2007-05-01 08:08:23 +02:00
|
|
|
git shortlog ^$baserev $headrev
|
|
|
|
git diff -M --stat --summary $merge_base $headrev
|
|
|
|
exit $status
|