Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
mbed-client/mbed-client-mbed-tls/.git/hooks/pre-applypatch.sample@0:06ee5f8a484a, 2017-03-18 (annotated)
- Committer:
- djmeyers
- Date:
- Sat Mar 18 22:37:16 2017 +0000
- Revision:
- 0:06ee5f8a484a
Initial commit
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| djmeyers | 0:06ee5f8a484a | 1 | #!/bin/sh |
| djmeyers | 0:06ee5f8a484a | 2 | # |
| djmeyers | 0:06ee5f8a484a | 3 | # An example hook script to verify what is about to be committed |
| djmeyers | 0:06ee5f8a484a | 4 | # by applypatch from an e-mail message. |
| djmeyers | 0:06ee5f8a484a | 5 | # |
| djmeyers | 0:06ee5f8a484a | 6 | # The hook should exit with non-zero status after issuing an |
| djmeyers | 0:06ee5f8a484a | 7 | # appropriate message if it wants to stop the commit. |
| djmeyers | 0:06ee5f8a484a | 8 | # |
| djmeyers | 0:06ee5f8a484a | 9 | # To enable this hook, rename this file to "pre-applypatch". |
| djmeyers | 0:06ee5f8a484a | 10 | |
| djmeyers | 0:06ee5f8a484a | 11 | . git-sh-setup |
| djmeyers | 0:06ee5f8a484a | 12 | test -x "$GIT_DIR/hooks/pre-commit" && |
| djmeyers | 0:06ee5f8a484a | 13 | exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"} |
| djmeyers | 0:06ee5f8a484a | 14 | : |