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/pre-applypatch.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 verify what is about to be committed |
| group-ublox | 0:19aa55d66228 | 4 | # by 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. |
| group-ublox | 0:19aa55d66228 | 8 | # |
| group-ublox | 0:19aa55d66228 | 9 | # To enable this hook, rename this file to "pre-applypatch". |
| group-ublox | 0:19aa55d66228 | 10 | |
| group-ublox | 0:19aa55d66228 | 11 | . git-sh-setup |
| group-ublox | 0:19aa55d66228 | 12 | test -x "$GIT_DIR/hooks/pre-commit" && |
| group-ublox | 0:19aa55d66228 | 13 | exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"} |
| group-ublox | 0:19aa55d66228 | 14 | : |