Simulated product dispenser
Fork of mbed-cloud-workshop-connect-HTS221 by
wifi-ism43362/.git/hooks/pre-applypatch.sample@4:e518dde96e59, 2018-10-25 (annotated)
- Committer:
- JimCarver
- Date:
- Thu Oct 25 14:00:12 2018 +0000
- Revision:
- 4:e518dde96e59
- Parent:
- 0:6b753f761943
Simulated dispenser
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
JimCarver | 0:6b753f761943 | 1 | #!/bin/sh |
JimCarver | 0:6b753f761943 | 2 | # |
JimCarver | 0:6b753f761943 | 3 | # An example hook script to verify what is about to be committed |
JimCarver | 0:6b753f761943 | 4 | # by applypatch from an e-mail message. |
JimCarver | 0:6b753f761943 | 5 | # |
JimCarver | 0:6b753f761943 | 6 | # The hook should exit with non-zero status after issuing an |
JimCarver | 0:6b753f761943 | 7 | # appropriate message if it wants to stop the commit. |
JimCarver | 0:6b753f761943 | 8 | # |
JimCarver | 0:6b753f761943 | 9 | # To enable this hook, rename this file to "pre-applypatch". |
JimCarver | 0:6b753f761943 | 10 | |
JimCarver | 0:6b753f761943 | 11 | . git-sh-setup |
JimCarver | 0:6b753f761943 | 12 | test -x "$GIT_DIR/hooks/pre-commit" && |
JimCarver | 0:6b753f761943 | 13 | exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"} |
JimCarver | 0:6b753f761943 | 14 | : |