summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorAndy Parkins <andyparkins@gmail.com>2007-04-26 21:35:39 (GMT)
committerJunio C Hamano <junkio@cox.net>2007-04-27 03:58:04 (GMT)
commit8e404f82abdfd912ad43c6fae7c218ff75a5d122 (patch)
treef00b2fb2a21ec1572fabbdbc25e531821e6c5f03 /contrib
parent0d5e6c9781aae33795243452fd50663d17ec2b9d (diff)
downloadgit-8e404f82abdfd912ad43c6fae7c218ff75a5d122.zip
git-8e404f82abdfd912ad43c6fae7c218ff75a5d122.tar.gz
git-8e404f82abdfd912ad43c6fae7c218ff75a5d122.tar.bz2
post-receive-email example hook: fastforward should have been fast_forward
Signed-off-by: Andy Parkins <andyparkins@gmail.com> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'contrib')
-rw-r--r--contrib/hooks/post-receive-email2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/hooks/post-receive-email b/contrib/hooks/post-receive-email
index 6516015..edb30f6 100644
--- a/contrib/hooks/post-receive-email
+++ b/contrib/hooks/post-receive-email
@@ -302,7 +302,7 @@ generate_update_branch_email()
# List all of the revisions that were removed by this update, in a fast forward
# update, this list will be empty, because rev-list O ^N is empty. For a non
# fast forward, O ^N is the list of removed revisions
- fastforward=""
+ fast_forward=""
rev=""
for rev in $(git rev-list $newrev..$oldrev)
do