FRDM K64F Metronome

Committer:
ram54288
Date:
Sun May 14 18:35:07 2017 +0000
Revision:
0:a2cb7295a1f7
Initial commit

Who changed what in which revision?

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