diff graster/graster/.git/hooks/pre-applypatch.sample @ 11:f952052e37b7

trying a fix.
author Robert McIntyre <rlm@mit.edu>
date Tue, 24 Aug 2010 19:06:45 -0400
parents
children
line wrap: on
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/graster/graster/.git/hooks/pre-applypatch.sample	Tue Aug 24 19:06:45 2010 -0400
     1.3 @@ -0,0 +1,14 @@
     1.4 +#!/bin/sh
     1.5 +#
     1.6 +# An example hook script to verify what is about to be committed
     1.7 +# by applypatch from an e-mail message.
     1.8 +#
     1.9 +# The hook should exit with non-zero status after issuing an
    1.10 +# appropriate message if it wants to stop the commit.
    1.11 +#
    1.12 +# To enable this hook, rename this file to "pre-applypatch".
    1.13 +
    1.14 +. git-sh-setup
    1.15 +test -x "$GIT_DIR/hooks/pre-commit" &&
    1.16 +	exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"}
    1.17 +: