From a5e984df5ed5ec7a04558cd7b33bae43c0547f7a Mon Sep 17 00:00:00 2001 From: turret Date: Mon, 2 Oct 2023 19:44:54 -0500 Subject: add current hooks --- github-mirror | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 github-mirror (limited to 'github-mirror') diff --git a/github-mirror b/github-mirror new file mode 100755 index 0000000..9223975 --- /dev/null +++ b/github-mirror @@ -0,0 +1,24 @@ +#!/bin/sh +# based on https://cgit.gentoo.org/infra/githooks.git/plain/github-mirror/github-mirror + +# simple gitolite mirroring + +# flush STDIN coming from git, because gitolite's own post-receive.mirrorpush +# script does the same thing +[ -t 0 ] || cat >/dev/null + +if [ -z "${GL_REPO}" ]; then + echo "GL_REPO not set" >&2 + exit 1 +fi + +targets=$(git config --get mirror.url) +[ -z "${targets}" ] && exit 0 + +[ -z "${GIT_SSH_KEY}" ] && export GIT_SSH_KEY=$(git config --get mirror.pubkey) +export GIT_SSH=$(dirname "$(readlink -f "$0")")/github-ssh-wrapper + +for target in ${targets}; do + # --force because someone may accidentally push into the mirror + git push --mirror --force ${target} +done -- cgit v1.2.3