wiki/_git/hooks/pre-applypatch.sample
Brendan Golden 45ca889725
testing
Signed-off-by: Brendan Golden <git@brendan.ie>
2024-09-14 22:36:45 +01:00

14 lines
481 B
Bash
Executable file

#!/nix/store/i1x9sidnvhhbbha2zhgpxkhpysw6ajmr-bash-5.2p26/bin/bash
#
# 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, rename this file to "pre-applypatch".
. git-sh-setup
precommit="$(git rev-parse --git-path hooks/pre-commit)"
test -x "$precommit" && exec "$precommit" ${1+"$@"}
: