summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-11-21 18:59:31 (GMT)
committerJunio C Hamano <junkio@cox.net>2005-11-21 20:21:06 (GMT)
commit60abce3c0f41952de7dc1a4abefcb988898b71a4 (patch)
tree5f6239a259705b5e31d9e7a1305bbbd388fa6fce
parent924215024c72bc359fad920010dd6b356a5140c8 (diff)
downloadgit-60abce3c0f41952de7dc1a4abefcb988898b71a4.zip
git-60abce3c0f41952de7dc1a4abefcb988898b71a4.tar.gz
git-60abce3c0f41952de7dc1a4abefcb988898b71a4.tar.bz2
Fix hooks/update template.
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>
-rw-r--r--templates/hooks--update7
1 files changed, 3 insertions, 4 deletions
diff --git a/templates/hooks--update b/templates/hooks--update
index 3f38b82..6db555f 100644
--- a/templates/hooks--update
+++ b/templates/hooks--update
@@ -8,14 +8,14 @@
# (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:"
@@ -24,8 +24,7 @@ else
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