diff options
author | Junio C Hamano <junkio@cox.net> | 2006-02-26 15:25:52 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-02-26 15:25:52 -0800 |
commit | ac5f7c62c2d59cdad0813fcd8c999db96a4fc9e4 (patch) | |
tree | e5a14450bb0af3a540f1f9beeb445f2f7c250f19 /templates | |
parent | 231af8322ac5313243bc1e8beac8dfd9ff95051d (diff) | |
parent | a204756a45bd357280c156d01858138712493dfa (diff) | |
download | git-ac5f7c62c2d59cdad0813fcd8c999db96a4fc9e4.tar.gz |
Merge branch 'maint'
* maint:
sample hooks template.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/hooks--applypatch-msg | 1 | ||||
-rw-r--r-- | templates/hooks--pre-applypatch | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/templates/hooks--applypatch-msg b/templates/hooks--applypatch-msg index bda3c86be7..02de1ef84c 100644 --- a/templates/hooks--applypatch-msg +++ b/templates/hooks--applypatch-msg @@ -9,6 +9,7 @@ # # To enable this hook, make this file executable. +. git-sh-setup test -x "$GIT_DIR/hooks/commit-msg" && exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"} : diff --git a/templates/hooks--pre-applypatch b/templates/hooks--pre-applypatch index a54751600e..5f56ce8053 100644 --- a/templates/hooks--pre-applypatch +++ b/templates/hooks--pre-applypatch @@ -8,6 +8,7 @@ # # To enable this hook, make this file executable. +. git-sh-setup test -x "$GIT_DIR/hooks/pre-commit" && exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"} : |