summaryrefslogtreecommitdiffstats
path: root/integrations/gitea-integration-meta/gitea-repositories/user2/repo1.git/hooks/applypatch-msg.sample
diff options
context:
space:
mode:
authorLunny Xiao <xiaolunwen@gmail.com>2017-04-28 21:23:28 +0800
committerGitHub <noreply@github.com>2017-04-28 21:23:28 +0800
commitfca7ddc6ea5ceae298b0a4f33d0b82a2f1ccc06e (patch)
treec367ef79ac6f3d8c9d18e129395ba0c6a822d535 /integrations/gitea-integration-meta/gitea-repositories/user2/repo1.git/hooks/applypatch-msg.sample
parent431b26f6d7d5b2d4700b4a65f1a81094c36a9fae (diff)
downloadgitea-fca7ddc6ea5ceae298b0a4f33d0b82a2f1ccc06e.tar.gz
gitea-fca7ddc6ea5ceae298b0a4f33d0b82a2f1ccc06e.zip
improve integration test to resue models/fixtures and store git repos with tests (#1627)
* improve integration test to resue models/fixtures and store git repos with source * use gitea-integration-meta dir instead .tar.gz and cleanup every before every test * fix import package name
Diffstat (limited to 'integrations/gitea-integration-meta/gitea-repositories/user2/repo1.git/hooks/applypatch-msg.sample')
-rwxr-xr-xintegrations/gitea-integration-meta/gitea-repositories/user2/repo1.git/hooks/applypatch-msg.sample15
1 files changed, 15 insertions, 0 deletions
diff --git a/integrations/gitea-integration-meta/gitea-repositories/user2/repo1.git/hooks/applypatch-msg.sample b/integrations/gitea-integration-meta/gitea-repositories/user2/repo1.git/hooks/applypatch-msg.sample
new file mode 100755
index 0000000000..a5d7b84a67
--- /dev/null
+++ b/integrations/gitea-integration-meta/gitea-repositories/user2/repo1.git/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
+commitmsg="$(git rev-parse --git-path hooks/commit-msg)"
+test -x "$commitmsg" && exec "$commitmsg" ${1+"$@"}
+: