FRDM K64F Metronome

Committer:
ram54288
Date:
Sun May 14 18:37:05 2017 +0000
Revision:
0:dbad57390bd1
Initial commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ram54288 0:dbad57390bd1 1 #!/bin/sh
ram54288 0:dbad57390bd1 2 #
ram54288 0:dbad57390bd1 3 # An example hook script to verify what is about to be committed
ram54288 0:dbad57390bd1 4 # by applypatch from an e-mail message.
ram54288 0:dbad57390bd1 5 #
ram54288 0:dbad57390bd1 6 # The hook should exit with non-zero status after issuing an
ram54288 0:dbad57390bd1 7 # appropriate message if it wants to stop the commit.
ram54288 0:dbad57390bd1 8 #
ram54288 0:dbad57390bd1 9 # To enable this hook, rename this file to "pre-applypatch".
ram54288 0:dbad57390bd1 10
ram54288 0:dbad57390bd1 11 . git-sh-setup
ram54288 0:dbad57390bd1 12 test -x "$GIT_DIR/hooks/pre-commit" &&
ram54288 0:dbad57390bd1 13 exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"}
ram54288 0:dbad57390bd1 14 :