summaryrefslogtreecommitdiff
path: root/templates/hooks--pre-applypatch.sample
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2008-06-25 01:45:21 (GMT)
committerJunio C Hamano <gitster@pobox.com>2008-06-25 02:06:22 (GMT)
commitf98f8cbac01e0d5dbb30660d7ea70af6a1439dfd (patch)
tree2f3a5b5f207ccc5432dd9f81959a002610ce5738 /templates/hooks--pre-applypatch.sample
parentba2d0f4f35beffbf715ca652d5b36df8c0ad5ceb (diff)
downloadgit-f98f8cbac01e0d5dbb30660d7ea70af6a1439dfd.zip
git-f98f8cbac01e0d5dbb30660d7ea70af6a1439dfd.tar.gz
git-f98f8cbac01e0d5dbb30660d7ea70af6a1439dfd.tar.bz2
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--pre-applypatch.sample')
-rwxr-xr-xtemplates/hooks--pre-applypatch.sample14
1 files changed, 14 insertions, 0 deletions
diff --git a/templates/hooks--pre-applypatch.sample b/templates/hooks--pre-applypatch.sample
new file mode 100755
index 0000000..b1f187c
--- /dev/null
+++ b/templates/hooks--pre-applypatch.sample
@@ -0,0 +1,14 @@
+#!/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, rename this file to "pre-applypatch".
+
+. git-sh-setup
+test -x "$GIT_DIR/hooks/pre-commit" &&
+ exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"}
+: