From: Junio C Hamano Date: Sun, 26 Feb 2006 23:16:41 +0000 (-0800) Subject: sample hooks template. X-Git-Tag: v1.2.4~7 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=a204756a45bd357280c156d01858138712493dfa;p=git.git sample hooks template. These two sample hooks try to detect and use the corresponding commit hook from the same repository. However, they forgot to set up GIT_DIR for their own use, so was not in effect. Signed-off-by: Junio C Hamano --- diff --git a/templates/hooks--applypatch-msg b/templates/hooks--applypatch-msg index bda3c86b..02de1ef8 100644 --- a/templates/hooks--applypatch-msg +++ b/templates/hooks--applypatch-msg @@ -9,6 +9,7 @@ # # To enable this hook, make this file executable. +. git-sh-setup test -x "$GIT_DIR/hooks/commit-msg" && exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"} : diff --git a/templates/hooks--pre-applypatch b/templates/hooks--pre-applypatch index a5475160..5f56ce80 100644 --- a/templates/hooks--pre-applypatch +++ b/templates/hooks--pre-applypatch @@ -8,6 +8,7 @@ # # To enable this hook, make this file executable. +. git-sh-setup test -x "$GIT_DIR/hooks/pre-commit" && exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"} :