123r
Dependencies: WNC14A2AInterface
mcr20a-rf-driver/.git/hooks/pre-applypatch.sample@7:c8e4e62c5fa7, 2019-05-02 (annotated)
- Committer:
- m_ahsan
- Date:
- Thu May 02 13:15:26 2019 +0000
- Revision:
- 7:c8e4e62c5fa7
- Parent:
- 0:2563b0415d1f
123
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
JMF | 0:2563b0415d1f | 1 | #!/bin/sh |
JMF | 0:2563b0415d1f | 2 | # |
JMF | 0:2563b0415d1f | 3 | # An example hook script to verify what is about to be committed |
JMF | 0:2563b0415d1f | 4 | # by applypatch from an e-mail message. |
JMF | 0:2563b0415d1f | 5 | # |
JMF | 0:2563b0415d1f | 6 | # The hook should exit with non-zero status after issuing an |
JMF | 0:2563b0415d1f | 7 | # appropriate message if it wants to stop the commit. |
JMF | 0:2563b0415d1f | 8 | # |
JMF | 0:2563b0415d1f | 9 | # To enable this hook, rename this file to "pre-applypatch". |
JMF | 0:2563b0415d1f | 10 | |
JMF | 0:2563b0415d1f | 11 | . git-sh-setup |
JMF | 0:2563b0415d1f | 12 | test -x "$GIT_DIR/hooks/pre-commit" && |
JMF | 0:2563b0415d1f | 13 | exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"} |
JMF | 0:2563b0415d1f | 14 | : |