gpt4 book ai didi

git - 防止人们使用不同的作者姓名推送 git commit?

转载 作者:IT王子 更新时间:2023-10-29 01:09:49 27 4
gpt4 key购买 nike

在 git 中,每个用户都可以在他们的本地 git 配置文件中指定正确的作者。当他们推送到集中式裸存储库时,存储库上的提交消息将具有他们在提交到自己的存储库时使用的作者姓名。

有没有办法强制使用一组已知的提交作者?可以通过 ssh 访问“中央”存储库。

我知道这很复杂,因为有些人可能正在 push 其他人所做的提交。当然,您也应该只允许您信任的人推送到您的存储库,但如果这里有一种方法可以防止用户错误,那就太好了。

在 git 中有解决这个问题的简单方法吗?

最佳答案

我们使用以下内容来防止意外的未知作者提交(例如,从客户的服务器或其他东西进行快速提交时)。它应该放在 .git/hooks/pre-receive 中并使其可执行。

#!/usr/bin/env python
# -*- coding: utf-8 -*-
import subprocess
from itertools import islice, izip
import sys

old, new, branch = sys.stdin.read().split()

authors = {
"John Doe": "john.doe@example.com"
}

proc = subprocess.Popen(["git", "rev-list", "--pretty=format:%an%n%ae%n", "%s..%s" % (old, new)], stdout=subprocess.PIPE)
data = [line.strip() for line in proc.stdout.readlines() if line.strip()]

def print_error(commit, author, email, message):
print "*" * 80
print "ERROR: Unknown Author!"
print "-" * 80
proc = subprocess.Popen(["git", "rev-list", "--max-count=1", "--pretty=short", commit], stdout=subprocess.PIPE)
print proc.stdout.read().strip()
print "*" * 80
raise SystemExit(1)

for commit, author, email in izip(islice(data, 0, None, 3), islice(data, 1, None, 3), islice(data, 2, None, 3)):
_, commit_hash = commit.split()
if not author in authors:
print_error(commit_hash, author, email, "Unknown Author")
elif authors[author] != email:
print_error(commit_hash, author, email, "Unknown Email")

关于git - 防止人们使用不同的作者姓名推送 git commit?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/117006/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com