Fork of my MQTTGateway

Dependencies:   mbed-http

Committer:
vpcola
Date:
Sat Apr 08 14:45:51 2017 +0000
Revision:
0:f1d3878b8dd9
Initial commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
vpcola 0:f1d3878b8dd9 1 #!/bin/sh
vpcola 0:f1d3878b8dd9 2 #
vpcola 0:f1d3878b8dd9 3 # An example hook script to check the commit log message taken by
vpcola 0:f1d3878b8dd9 4 # applypatch from an e-mail message.
vpcola 0:f1d3878b8dd9 5 #
vpcola 0:f1d3878b8dd9 6 # The hook should exit with non-zero status after issuing an
vpcola 0:f1d3878b8dd9 7 # appropriate message if it wants to stop the commit. The hook is
vpcola 0:f1d3878b8dd9 8 # allowed to edit the commit message file.
vpcola 0:f1d3878b8dd9 9 #
vpcola 0:f1d3878b8dd9 10 # To enable this hook, rename this file to "applypatch-msg".
vpcola 0:f1d3878b8dd9 11
vpcola 0:f1d3878b8dd9 12 . git-sh-setup
vpcola 0:f1d3878b8dd9 13 test -x "$GIT_DIR/hooks/commit-msg" &&
vpcola 0:f1d3878b8dd9 14 exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"}
vpcola 0:f1d3878b8dd9 15 :