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 verify what is about to be committed
DuyLionTran 0:8094b249013c 4 # by 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.
DuyLionTran 0:8094b249013c 8 #
DuyLionTran 0:8094b249013c 9 # To enable this hook, rename this file to "pre-applypatch".
DuyLionTran 0:8094b249013c 10
DuyLionTran 0:8094b249013c 11 . git-sh-setup
DuyLionTran 0:8094b249013c 12 test -x "$GIT_DIR/hooks/pre-commit" &&
DuyLionTran 0:8094b249013c 13 exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"}
DuyLionTran 0:8094b249013c 14 :