diff -r e4e656f19771 -r 0147c0a9ce2b .git/hooks/pre-merge-commit.sample --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.git/hooks/pre-merge-commit.sample Sun Nov 21 22:04:40 2021 +0000 @@ -0,0 +1,13 @@ +#!/bin/sh +# +# 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" +: