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-driver/ESP8266/ATParser/.git/hooks/applypatch-msg.sample@6:304d3ba87a01, 2017-11-03 (annotated)
- Committer:
- RobMeades
- Date:
- Fri Nov 03 13:01:23 2017 +0000
- Revision:
- 6:304d3ba87a01
- Parent:
- 0:19aa55d66228
Add comment concerning N2XX baud rate.
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| group-ublox | 0:19aa55d66228 | 1 | #!/bin/sh |
| group-ublox | 0:19aa55d66228 | 2 | # |
| group-ublox | 0:19aa55d66228 | 3 | # An example hook script to check the commit log message taken by |
| group-ublox | 0:19aa55d66228 | 4 | # applypatch from an e-mail message. |
| group-ublox | 0:19aa55d66228 | 5 | # |
| group-ublox | 0:19aa55d66228 | 6 | # The hook should exit with non-zero status after issuing an |
| group-ublox | 0:19aa55d66228 | 7 | # appropriate message if it wants to stop the commit. The hook is |
| group-ublox | 0:19aa55d66228 | 8 | # allowed to edit the commit message file. |
| group-ublox | 0:19aa55d66228 | 9 | # |
| group-ublox | 0:19aa55d66228 | 10 | # To enable this hook, rename this file to "applypatch-msg". |
| group-ublox | 0:19aa55d66228 | 11 | |
| group-ublox | 0:19aa55d66228 | 12 | . git-sh-setup |
| group-ublox | 0:19aa55d66228 | 13 | test -x "$GIT_DIR/hooks/commit-msg" && |
| group-ublox | 0:19aa55d66228 | 14 | exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"} |
| group-ublox | 0:19aa55d66228 | 15 | : |