annotate Lib/fftw-3.2.1/.git/hooks/applypatch-msg.sample @ 0:25bf17994ef1

First commit. VS2013, Codeblocks and Mac OSX configuration
author Geogaddi\David <d.m.ronan@qmul.ac.uk>
date Thu, 09 Jul 2015 01:12:16 +0100
parents
children
rev   line source
d@0 1 #!/bin/sh
d@0 2 #
d@0 3 # An example hook script to check the commit log message taken by
d@0 4 # applypatch from an e-mail message.
d@0 5 #
d@0 6 # The hook should exit with non-zero status after issuing an
d@0 7 # appropriate message if it wants to stop the commit. The hook is
d@0 8 # allowed to edit the commit message file.
d@0 9 #
d@0 10 # To enable this hook, rename this file to "applypatch-msg".
d@0 11
d@0 12 . git-sh-setup
d@0 13 test -x "$GIT_DIR/hooks/commit-msg" &&
d@0 14 exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"}
d@0 15 :