annotate Lib/fftw-3.2.1/.git/hooks/pre-applypatch.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 verify what is about to be committed
|
d@0
|
4 # by 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.
|
d@0
|
8 #
|
d@0
|
9 # To enable this hook, rename this file to "pre-applypatch".
|
d@0
|
10
|
d@0
|
11 . git-sh-setup
|
d@0
|
12 test -x "$GIT_DIR/hooks/pre-commit" &&
|
d@0
|
13 exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"}
|
d@0
|
14 :
|