Signed-off-by: David Symonds <redacted>
---
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