Revision a61399b5fb7f4b04d60f42b253cb0f684bcdd286 authored by Junio C Hamano on 24 September 2005, 01:51:02 UTC, committed by Junio C Hamano on 24 September 2005, 01:51:02 UTC
Signed-off-by: Junio C Hamano <junkio@cox.net>
2 parent s 990f856 + dc56bc0
Raw File
hooks--pre-applypatch
#!/bin/sh
#
# An example hook script to verify what is about to be committed
# by applypatch from an e-mail message.
#
# The hook should exit with non-zero status after issuing an
# appropriate message if it wants to stop the commit.
#
# To enable this hook, make this file executable.

test -x "$GIT_DIR/hooks/pre-commit" &&
	exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"}
:

back to top