aboutsummaryrefslogtreecommitdiffhomepage
path: root/documents.git/hooks/pre-receive.sample
diff options
context:
space:
mode:
authorYasutake Yohei <61961825+yasutakeyohei@users.noreply.github.com>2026-06-19 00:22:53 +0900
committerYasutake Yohei <61961825+yasutakeyohei@users.noreply.github.com>2026-06-19 00:22:53 +0900
commitecd6f1661333e66f39f2b4e1ada1ba46d993172a (patch)
tree75496a20bb431c60841854e0d9226e4e23f04062 /documents.git/hooks/pre-receive.sample
parent5bc1e63756cae6974430f1e6cf1a4d5e88f5b9cc (diff)
Initial commit
Diffstat (limited to 'documents.git/hooks/pre-receive.sample')
-rw-r--r--documents.git/hooks/pre-receive.sample24
1 files changed, 0 insertions, 24 deletions
diff --git a/documents.git/hooks/pre-receive.sample b/documents.git/hooks/pre-receive.sample
deleted file mode 100644
index a1fd29e..0000000
--- a/documents.git/hooks/pre-receive.sample
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-#
-# An example hook script to make use of push options.
-# The example simply echoes all push options that start with 'echoback='
-# and rejects all pushes when the "reject" push option is used.
-#
-# To enable this hook, rename this file to "pre-receive".
-
-if test -n "$GIT_PUSH_OPTION_COUNT"
-then
- i=0
- while test "$i" -lt "$GIT_PUSH_OPTION_COUNT"
- do
- eval "value=\$GIT_PUSH_OPTION_$i"
- case "$value" in
- echoback=*)
- echo "echo from the pre-receive-hook: ${value#*=}" >&2
- ;;
- reject)
- exit 1
- esac
- i=$((i + 1))
- done
-fi