14

我的计划是使用 git 来跟踪 /etc 中的更改,但是在提交时,我希望通过在命令行上添加 --author 选项来让进行更改的人将自己指定为作者。

所以我想以root身份停止意外提交。

我尝试创建这个预提交钩子,但它不起作用 - 即使我在提交行上指定了作者,git var 仍然返回 root。

AUTHOR=`git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/\1/p'`
if [ "$AUTHOR" == "root <root@localhost>" ];
then
   echo "Please commit under your own user name instead of \"$AUTHOR\":"
   echo 'git commit --author="Adrian"'
   echo "or if your name is not already in logs use full ident"
   echo 'git commit --author="Adrian Cornish <a@localhost>"'
   exit 1
fi
exit 0
4

2 回答 2

11

在 v1.7.10.1(2012-05-01 发布)之前,Git 没有--author通过环境变量、命令行参数或标准输入向 Git 挂钩提供信息。但是,--author您可以指示用户设置GIT_AUTHOR_NAMEGIT_AUTHOR_EMAIL环境变量,而不是要求使用命令行:

#!/bin/sh
AUTHORINFO=$(git var GIT_AUTHOR_IDENT) || exit 1
NAME=$(printf '%s\n' "${AUTHORINFO}" | sed -n 's/^\(.*\) <.*$/\1/p')
EMAIL=$(printf '%s\n' "${AUTHORINFO}" | sed -n 's/^.* <\(.*\)> .*$/\1/p')
[ "${NAME}" != root ] && [ "${EMAIL}" != "root@localhost" ] || {
    cat <<EOF >&2
Please commit under your own name and email instead of "${NAME} <${EMAIL}>":
GIT_AUTHOR_NAME="Your Name" GIT_AUTHOR_EMAIL="your@email.com" git commit
EOF
    exit 1
}

--author参数一样,这些环境变量控制着提交的作者。因为这些环境变量在 Git 的环境中,所以它们也在pre-commit钩子的环境中。而且因为它们在pre-commit钩子的环境中,它们被传递给git var GIT_AUTHOR_IDENT使用它们的地方git commit

不幸的是,设置这些变量远不如使用--author. 如果可以,请升级到 v1.7.10.1 或更高版本。

于 2012-03-09T06:13:23.210 回答
0

我使用了以下内容,将其添加到系统 .bashrc 中。

它不会抓住那些实际上 su 根并生活在那个 shell 中的人,(糟糕!)但是当人们只使用 sudo 时,它确实让我的日志有用。我也在尝试用 git 保存 /etc 更改日志——这样我就可以看到每个月都做了什么。

#I want everyone to check in changes to /etc files, but also want their names even when they use sudo.
export GIT_COMMITTER_EMAIL=${USER}@ourcompany.co.nz
export GIT_AUTHOR_EMAIL=${USER}@ourcompany.co.nz

https://serverfault.com/questions/256754/correct-user-names-when-tracking-etc-in-git-repository-and-committing-as-root

于 2014-03-26T16:01:53.970 回答