Prueba ESP y SMT32f103c8t6

Dependents:   ESP8266_Prueba

Fork of esp8266-driver by ESP8266

Committer:
josuechopite
Date:
Sun Aug 06 16:09:25 2017 +0000
Revision:
1:9e953a34e172
Parent:
0:6946b0b9e323
Prueba

Who changed what in which revision?

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