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.
ESP8266/ATParser/.git/hooks/applypatch-msg.sample@1:8609148e2116, 2019-08-23 (annotated)
- Committer:
- UlricL
- Date:
- Fri Aug 23 13:11:39 2019 +0000
- Revision:
- 1:8609148e2116
- Parent:
- 0:6946b0b9e323
Jnu726wifiesp
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 check the commit log message taken by |
group-ESP8266 | 0:6946b0b9e323 | 4 | # 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. The hook is |
group-ESP8266 | 0:6946b0b9e323 | 8 | # allowed to edit the commit message file. |
group-ESP8266 | 0:6946b0b9e323 | 9 | # |
group-ESP8266 | 0:6946b0b9e323 | 10 | # To enable this hook, rename this file to "applypatch-msg". |
group-ESP8266 | 0:6946b0b9e323 | 11 | |
group-ESP8266 | 0:6946b0b9e323 | 12 | . git-sh-setup |
group-ESP8266 | 0:6946b0b9e323 | 13 | test -x "$GIT_DIR/hooks/commit-msg" && |
group-ESP8266 | 0:6946b0b9e323 | 14 | exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"} |
group-ESP8266 | 0:6946b0b9e323 | 15 | : |