summaryrefslogtreecommitdiff
path: root/etc/git/pre-push
diff options
context:
space:
mode:
Diffstat (limited to 'etc/git/pre-push')
-rwxr-xr-xetc/git/pre-push48
1 files changed, 48 insertions, 0 deletions
diff --git a/etc/git/pre-push b/etc/git/pre-push
new file mode 100755
index 0000000..38a7240
--- /dev/null
+++ b/etc/git/pre-push
@@ -0,0 +1,48 @@
1#!/bin/sh
2# SPDX-License-Identifier: GPL-3.0-or-later
3# Copyright © 2024 Jonathan Brielmaier <jonathan.brielmaier@web.de>
4# Copyright © 2024 Wolf <wolf@wolfsden.cz>
5
6# This hook script prevents the user from pushing to GitLab if any of the new
7# commits' OpenPGP signatures cannot be verified, or if a commit is signed
8# with an unauthorized key.
9
10# Called by "git push" after it has checked the remote status, but before
11# anything has been pushed. If this script exits with a non-zero status nothing
12# will be pushed.
13#
14# This hook is called with the following parameters:
15#
16# $1 -- Name of the remote to which the push is being done
17# $2 -- URL to which the push is being done
18#
19# If pushing without using a named remote those arguments will be equal.
20#
21# Information about the commits which are being pushed is supplied as lines to
22# the standard input in the form:
23#
24# <local ref> <local sha1> <remote ref> <remote sha1>
25
26# This is the "empty hash" used by Git when pushing a branch deletion.
27z40=0000000000000000000000000000000000000000
28
29while read local_ref local_hash remote_ref remote_hash
30do
31 # When deleting a remote branch, no commits are pushed to the remote, and
32 # thus there are no signatures to be verified.
33 if [ "$local_hash" != $z40 ]
34 then
35 # Only use the hook when pushing to the nonguix project on GitLab.
36 case "$2" in
37 *gitlab.com[:/]nonguix/*)
38 exec make authenticate
39 exit 127
40 ;;
41 *)
42 exit 0
43 ;;
44 esac
45 fi
46done
47
48exit 0