aboutsummaryrefslogtreecommitdiff
path: root/documents.git/hooks/pre-merge-commit.sample
diff options
context:
space:
mode:
authorYasutake Yohei <yohei@yasutakeyohei.com>2023-12-30 22:24:55 +0900
committerYasutake Yohei <yohei@yasutakeyohei.com>2023-12-30 22:24:55 +0900
commit3fc0ee1b72c12922254533b78695ffa17e7232be (patch)
treef92d871e6720670f3fa98d9e28b9396a894d9135 /documents.git/hooks/pre-merge-commit.sample
parente18d8441d03746158a72029381d8fbdee39184b3 (diff)
initial commit
Diffstat (limited to 'documents.git/hooks/pre-merge-commit.sample')
-rw-r--r--documents.git/hooks/pre-merge-commit.sample13
1 files changed, 13 insertions, 0 deletions
diff --git a/documents.git/hooks/pre-merge-commit.sample b/documents.git/hooks/pre-merge-commit.sample
new file mode 100644
index 00000000..399eab19
--- /dev/null
+++ b/documents.git/hooks/pre-merge-commit.sample
@@ -0,0 +1,13 @@
+#!/bin/sh
+#
+# An example hook script to verify what is about to be committed.
+# Called by "git merge" with no arguments. The hook should
+# exit with non-zero status after issuing an appropriate message to
+# stderr if it wants to stop the merge commit.
+#
+# To enable this hook, rename this file to "pre-merge-commit".
+
+. git-sh-setup
+test -x "$GIT_DIR/hooks/pre-commit" &&
+ exec "$GIT_DIR/hooks/pre-commit"
+: