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>
16 lines
388 B
Bash
16 lines
388 B
Bash
#!/bin/sh
|
|
#
|
|
# An example hook script to verify what is about to be committed
|
|
# 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.
|
|
#
|
|
# 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+"$@"}
|
|
:
|
|
|