A metronome using the FRDM K64F board

Committer:
ram54288
Date:
Sun May 14 18:40:18 2017 +0000
Revision:
0:a7a43371b306
Initial commit

Who changed what in which revision?

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