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
='<commit> <url> [<head>]'
8 LONG_USAGE
='Summarizes the changes since <commit> to the standard output,
9 and includes <url> in the message generated.'
17 [ "$revision" ] || usage
20 baserev
=`git-rev-parse --verify "$revision"^0` &&
21 headrev
=`git-rev-parse --verify "$head"^0` ||
exit
23 echo "The following changes since commit $baserev:"
24 git log
--max-count=1 --pretty=short
"$baserev" |
25 git-shortlog |
sed -e 's/^\(.\)/ \1/'
27 echo "are found in the git repository at:"
32 git log
$baserev..
$headrev | git-shortlog
;
33 git
diff --stat --summary $baserev..
$headrev