Revision 0adc030615fbec4ca20b5fe0b61ed118e82122dc authored by Junio C Hamano on 24 October 2009, 05:30:42 UTC, committed by Junio C Hamano on 24 October 2009, 05:30:42 UTC
* jp/maint-send-email-fold:
  git-send-email.perl: fold multiple entry "Cc:" and multiple single line "RCPT TO:"s
2 parent s 64fb90b + 02461e0
Raw File
hooks--applypatch-msg.sample
#!/bin/sh
#
# An example hook script to check the commit log message taken 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.  The hook is
# allowed to edit the commit message file.
#
# To enable this hook, rename this file to "applypatch-msg".

. git-sh-setup
test -x "$GIT_DIR/hooks/commit-msg" &&
	exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"}
:
back to top