在Visual Studio中更改Git作者信息

时间:2017-03-27 14:28:44

标签: git visual-studio azure-devops git-filter-branch

我在Visual Studio Team Services中有一个团队项目,我使用git作为版本控制系统。

是否可以在Visual Studio网站中更改提交的作者姓名和电子邮件?

1 个答案:

答案 0 :(得分:15)

您的作者姓名和电子邮件地址与您的提交绑定,并且主要取自您的全局Git设置,而不是您的VSTS帐户。通过Team Explorer > Settings > Repository Settings更改您的显示信息。

Git name and email

如果你想通过Git shell更改它:

  

要设置特定存储库的用户名,请在存储库的根文件夹中输入以下命令:

git config user.name "Billy Everyteen"
# Set a new name
git config user.name
# Verify the setting
Billy Everyteen

Source

编辑:刚刚注意到您正在谈论现有提交,请查看Change commit author at one specific commit