diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-09-30 17:34:25 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-09-30 17:34:25 +0200 |
commit | 05672f7435cfa419893b4282d49254390181833e (patch) | |
tree | b99ab6849e2f3851c593a593b58d3b7d840ddfcf /build/c/git_template/hooks/pre-receive.sample | |
parent | build(cog.toml): Format *before* checking the formatting (diff) | |
download | flake-templates-05672f7435cfa419893b4282d49254390181833e.tar.gz flake-templates-05672f7435cfa419893b4282d49254390181833e.zip |
chore(version): v0.7.0 v0.7.0
Diffstat (limited to 'build/c/git_template/hooks/pre-receive.sample')
-rw-r--r-- | build/c/git_template/hooks/pre-receive.sample | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/build/c/git_template/hooks/pre-receive.sample b/build/c/git_template/hooks/pre-receive.sample new file mode 100644 index 0000000..0bf2643 --- /dev/null +++ b/build/c/git_template/hooks/pre-receive.sample @@ -0,0 +1,24 @@ +#!/usr/bin/env bash +# +# 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 |