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.
Fork of esp8266-driver by
ESP8266/ATParser/.git/hooks/pre-applypatch.sample@5:fb13d8ecbefa, 2017-08-23 (annotated)
- Committer:
- williampeers
- Date:
- Wed Aug 23 02:26:10 2017 +0000
- Revision:
- 5:fb13d8ecbefa
- Parent:
- 0:6946b0b9e323
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
group-ESP8266 | 0:6946b0b9e323 | 1 | #!/bin/sh |
group-ESP8266 | 0:6946b0b9e323 | 2 | # |
group-ESP8266 | 0:6946b0b9e323 | 3 | # An example hook script to verify what is about to be committed |
group-ESP8266 | 0:6946b0b9e323 | 4 | # by applypatch from an e-mail message. |
group-ESP8266 | 0:6946b0b9e323 | 5 | # |
group-ESP8266 | 0:6946b0b9e323 | 6 | # The hook should exit with non-zero status after issuing an |
group-ESP8266 | 0:6946b0b9e323 | 7 | # appropriate message if it wants to stop the commit. |
group-ESP8266 | 0:6946b0b9e323 | 8 | # |
group-ESP8266 | 0:6946b0b9e323 | 9 | # To enable this hook, rename this file to "pre-applypatch". |
group-ESP8266 | 0:6946b0b9e323 | 10 | |
group-ESP8266 | 0:6946b0b9e323 | 11 | . git-sh-setup |
group-ESP8266 | 0:6946b0b9e323 | 12 | test -x "$GIT_DIR/hooks/pre-commit" && |
group-ESP8266 | 0:6946b0b9e323 | 13 | exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"} |
group-ESP8266 | 0:6946b0b9e323 | 14 | : |