Skip to content

Commit

Permalink
Fix hooks/update template.
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Junio C Hamano committed Nov 21, 2005
1 parent 9242150 commit 60abce3
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions templates/hooks--update
Original file line number Diff line number Diff line change
Expand Up @@ -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:"
Expand All @@ -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

0 comments on commit 60abce3

Please sign in to comment.