summaryrefslogtreecommitdiff
path: root/templates/hooks--applypatch-msg.sample
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2008-06-24 18:45:21 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2008-06-24 19:06:22 -0700
commitf98f8cbac01e0d5dbb30660d7ea70af6a1439dfd (patch)
tree2f3a5b5f207ccc5432dd9f81959a002610ce5738 /templates/hooks--applypatch-msg.sample
parentpre-rebase hook update (diff)
downloadtgif-f98f8cbac01e0d5dbb30660d7ea70af6a1439dfd.tar.xz
Ship sample hooks with .sample suffix
We used to mark hooks we ship as samples by making them unexecutable, but some filesystems cannot tell what is executable and what is not. This makes it much more explicit. The hooks are suffixed with .sample (but now are made executable), so enabling it is still one step operation (instead of "chmod +x $hook", you would do "mv $hook.sample $hook") but now they won't get accidentally enabled on systems without executable bit. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'templates/hooks--applypatch-msg.sample')
-rwxr-xr-xtemplates/hooks--applypatch-msg.sample15
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/hooks--applypatch-msg.sample b/templates/hooks--applypatch-msg.sample
new file mode 100755
index 0000000000..8b2a2fe84f
--- /dev/null
+++ b/templates/hooks--applypatch-msg.sample
@@ -0,0 +1,15 @@
+#!/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+"$@"}
+: