OneNet_IoT_demo for ASC platform

Dependencies:   Common_lib ESP8266 EdpKit_lib cJSON_lib driver_mbed_HP20x driver_mbed_TH02 wifi_example

Fork of mbed-os-example-esp8266 by ESP8266

Committer:
group-ESP8266
Date:
Thu Jan 12 20:21:45 2017 +0000
Revision:
0:b887535f68bf
Initial commit

Who changed what in which revision?

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