mirror of
https://github.com/git/git.git
synced 2024-11-01 14:57:52 +01:00
a204756a45
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 <junkio@cox.net>
15 lines
441 B
Bash
15 lines
441 B
Bash
#!/bin/sh
|
|
#
|
|
# An example hook script to check the commit log message taken by
|
|
# applypatch from an e-mail message.
|
|
#
|
|
# The hook should exit with non-zero status after issuing an
|
|
# appropriate message if it wants to stop the commit. The hook is
|
|
# allowed to edit the commit message file.
|
|
#
|
|
# 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+"$@"}
|
|
:
|