Changes to enabled on-line compiler

Committer:
JMF
Date:
Wed May 30 20:59:51 2018 +0000
Revision:
0:082731ede69f
Initial commit

Who changed what in which revision?

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