Fork of my original MQTTGateway

Dependencies:   mbed-http

Committer:
vpcola
Date:
Sat Apr 08 14:43:14 2017 +0000
Revision:
0:a1734fe1ec4b
Initial commit

Who changed what in which revision?

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