* [PATCH] git-commit: Pass commit SHA-1 hash to post-commit hook.
@ 2007-11-14 0:29 David Symonds
0 siblings, 0 replies; only message in thread
From: David Symonds @ 2007-11-14 0:29 UTC (permalink / raw)
To: Junio C Hamano; +Cc: git, Kristis Makris, David Symonds
Signed-off-by: David Symonds <dsymonds@gmail.com>
---
Documentation/hooks.txt | 4 ++--
git-commit.sh | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/Documentation/hooks.txt b/Documentation/hooks.txt
index f110162..d5b18f1 100644
--- a/Documentation/hooks.txt
+++ b/Documentation/hooks.txt
@@ -81,8 +81,8 @@ The default 'commit-msg' hook, when enabled, detects duplicate
post-commit
-----------
-This hook is invoked by `git-commit`. It takes no
-parameter, and is invoked after a commit is made.
+This hook is invoked by `git-commit`. It is passed one
+parameter (the new commit's SHA-1 hash), and is invoked after a commit is made.
This hook is meant primarily for notification, and cannot affect
the outcome of `git-commit`.
diff --git a/git-commit.sh b/git-commit.sh
index 4853397..fff58cb 100755
--- a/git-commit.sh
+++ b/git-commit.sh
@@ -616,7 +616,7 @@ then
git gc --auto
if test -x "$GIT_DIR"/hooks/post-commit
then
- "$GIT_DIR"/hooks/post-commit
+ "$GIT_DIR"/hooks/post-commit $commit
fi
if test -z "$quiet"
then
--
1.5.3.1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2007-11-14 0:41 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-14 0:29 [PATCH] git-commit: Pass commit SHA-1 hash to post-commit hook David Symonds
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.