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

13 lines
473 B
Bash
Executable file

#!/nix/store/i1x9sidnvhhbbha2zhgpxkhpysw6ajmr-bash-5.2p26/bin/bash
#
# An example hook script to verify what is about to be committed.
# Called by "git merge" with no arguments. The hook should
# exit with non-zero status after issuing an appropriate message to
# stderr if it wants to stop the merge commit.
#
# To enable this hook, rename this file to "pre-merge-commit".
. git-sh-setup
test -x "$GIT_DIR/hooks/pre-commit" &&
exec "$GIT_DIR/hooks/pre-commit"
: