在每次提交中设置用户名

时间:2011-12-19 20:45:32

标签: git

我们将在服务器中使用相同的用户在git中进行提交。那么,如何在提交时配置用户名?

示例:

git add -A 
git commit -m "mensage" -user="User A"

2 个答案:

答案 0 :(得分:4)

来自manual of git-commit

--author=<author>
  Override the commit author.

答案 1 :(得分:1)

您可以通过在该存储库的工作目录中键入git config user.name "my name"git config user.email "me@example.com"来配置用户名per-repo。如果要在提交之间更改用户名,可以使用相同的内容。