d@0: #!/bin/sh d@0: # d@0: # An example hook script to verify what is about to be committed d@0: # by applypatch from an e-mail message. d@0: # d@0: # The hook should exit with non-zero status after issuing an d@0: # appropriate message if it wants to stop the commit. d@0: # d@0: # To enable this hook, rename this file to "pre-applypatch". d@0: d@0: . git-sh-setup d@0: test -x "$GIT_DIR/hooks/pre-commit" && d@0: exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"} d@0: :