如何限制推送操作以仅允许在github中使用GPG签名的提交

我有一个
Github存储库,我们共享我们的开发.为了确保完整性,我们决定使用GPG签署我们的提交和标签.

现在,我如何阻止开发人员将未签名的提交推送到Github中的存储库以及白名单GPG公钥,以允许推送使用白名单公钥进行修改的提交

我检查了一些预推钩,但没有按照我上面描述的方式工作,这里是.

remote="$1"
url="$2"

z40=0000000000000000000000000000000000000000

IFS=' '
while read local_ref local_sha remote_ref remote_sha
do
    if [ "$local_sha" = $z40 ]
    then
    # Handle delete
    else
    if [ "$remote_sha" = $z40 ]
    then
        # New branch, examine all commits
        range="$local_sha"
    else
        # Update to existing branch, examine new commits
        range="$remote_sha..$local_sha"
    fi

    # Check for WIP commit
    commit=`git rev-list -n 1 --grep '^WIP' "$range"`
    if [ -n "$commit" ]
    then
        echo "Found WIP commit in $local_ref, not pushing"
        exit 1
     fi
    fi
 done
exit 0

我怎么能这样做?任何概念或例子都将受到高度赞赏.

最佳答案 看起来你在GitHub Enterprise并试图拒绝任何未签名的提交
create a pre-receive hook script – 对吗?如果是这样,这里是来自GitHub的
an open source GPG script.如果您使用的是GitHub.com,请注意它们不支持预接收挂钩,而是您需要设置
protected branch with required status check以拒绝未签名的工作.

至于设置键,你看过this article吗?

点赞