Mercurial > lasercutter
view graster/hacklab-engraver/.git/hooks/applypatch-msg.sample @ 21:e72220627685 tip
0.002 inch discrepancy with target. going to test anyway
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Mon, 30 Aug 2010 01:19:21 -0400 |
parents | f952052e37b7 |
children |
line wrap: on
line source
1 #!/bin/sh2 #3 # An example hook script to check the commit log message taken by4 # applypatch from an e-mail message.5 #6 # The hook should exit with non-zero status after issuing an7 # appropriate message if it wants to stop the commit. The hook is8 # allowed to edit the commit message file.9 #10 # To enable this hook, rename this file to "applypatch-msg".12 . git-sh-setup13 test -x "$GIT_DIR/hooks/commit-msg" &&14 exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"}15 :