my customized lib

Committer:
DuyLionTran
Date:
Sun Nov 26 15:08:14 2017 +0000
Revision:
0:8094b249013c
Initial commit

Who changed what in which revision?

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