Vergil Cola
/
MQTTGatewayK64
Fork of my MQTTGateway
sd-driver/.git/hooks/pre-applypatch.sample@0:f1d3878b8dd9, 2017-04-08 (annotated)
- Committer:
- vpcola
- Date:
- Sat Apr 08 14:45:51 2017 +0000
- Revision:
- 0:f1d3878b8dd9
Initial commit
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
vpcola | 0:f1d3878b8dd9 | 1 | #!/bin/sh |
vpcola | 0:f1d3878b8dd9 | 2 | # |
vpcola | 0:f1d3878b8dd9 | 3 | # An example hook script to verify what is about to be committed |
vpcola | 0:f1d3878b8dd9 | 4 | # by applypatch from an e-mail message. |
vpcola | 0:f1d3878b8dd9 | 5 | # |
vpcola | 0:f1d3878b8dd9 | 6 | # The hook should exit with non-zero status after issuing an |
vpcola | 0:f1d3878b8dd9 | 7 | # appropriate message if it wants to stop the commit. |
vpcola | 0:f1d3878b8dd9 | 8 | # |
vpcola | 0:f1d3878b8dd9 | 9 | # To enable this hook, rename this file to "pre-applypatch". |
vpcola | 0:f1d3878b8dd9 | 10 | |
vpcola | 0:f1d3878b8dd9 | 11 | . git-sh-setup |
vpcola | 0:f1d3878b8dd9 | 12 | test -x "$GIT_DIR/hooks/pre-commit" && |
vpcola | 0:f1d3878b8dd9 | 13 | exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"} |
vpcola | 0:f1d3878b8dd9 | 14 | : |