summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 9242150)
raw | patch | inline | side by side (parent: 9242150)
author | Junio C Hamano <junkio@cox.net> | |
Mon, 21 Nov 2005 18:59:31 +0000 (10:59 -0800) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Mon, 21 Nov 2005 20:21:06 +0000 (12:21 -0800) |
Make the example address RFC2606 (aka BCP0032) compliant. Also
fix a couple of shell script errors.
Noted and fixed by Matthew Wilcox and Andreas Ericsson.
Signed-off-by: Junio C Hamano <junkio@cox.net>
fix a couple of shell script errors.
Noted and fixed by Matthew Wilcox and Andreas Ericsson.
Signed-off-by: Junio C Hamano <junkio@cox.net>
templates/hooks--update | patch | blob | history |
index 3f38b82a4710400e512d478ec6b552202a34369f..6db555f6580ca0831cf285a62ab7354211168203 100644 (file)
--- a/templates/hooks--update
+++ b/templates/hooks--update
# (2) make this file executable by "chmod +x update".
#
-recipient="commit-list@mydomain.xz"
+recipient="commit-list@example.com"
if expr "$2" : '0*$' >/dev/null
then
echo "Created a new ref, with the following commits:"
git-rev-list --pretty "$3"
else
- $base=$(git-merge-base "$2" "$3")
+ base=$(git-merge-base "$2" "$3")
case "$base" in
"$2")
echo "New commits:"
echo "Rebased ref, commits from common ancestor:"
;;
esac
-fi
-git-rev-list --pretty "$3" "^$base"
+ git-rev-list --pretty "$3" "^$base"
fi |
mail -s "Changes to ref $1" "$recipient"
exit 0