我的计划是使用 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