如何更改Eclipse Git插件中的默认作者和提交者?

时间:2012-05-19 08:08:07

标签: eclipse git eclipse-plugin egit author

我正在使用Eclipse的Git插件。当我开始在这些字段中输入时,我会显示几个作者和提交者。

如何更改此列表,或删除某些作者或提交者?

此外,我想设置默认显示的默认作者和提交者。

Enter image description here

5 个答案:

答案 0 :(得分:142)

  1. 点击窗口>偏好>团队> Git>构造
  2. 点击添加条目并输入键值对:

    • 键: user.name
    • 价值: YourUsernameHere

    • 键: user.email
    • 价值: YourEmailHere

答案 1 :(得分:15)

每个开发人员都应该执行:

git config --global user.name "<name of user>"
git config --global user.email "<email of user>"

如果您想更改现有提交的作者,请查看here

答案 2 :(得分:13)

EGit应该在你第一次提交的时候问你。但您可以稍后更改,请参阅此处:http://wiki.eclipse.org/EGit/User_Guide#Identifying_yourself

答案 3 :(得分:8)

更改您的提交者姓名&amp;全球电子邮件

您可以使用git config标志运行“--global”命令;这将确保您所有未来的提交都使用给定的信息:

$ git config --global user.name "John Doe"
$ git config --global user.email "john@doe.org"

更改您的提交者姓名&amp;每个存储库的电子邮件

如果只想在某个存储库中工作时才使用特殊设置,则可以省略--global标志。这使得配置仅在该存储库中有效:

$ git config user.name "John Doe"
$ git config user.email "john@doe.org"

Git Cheatsheet:git for dummies

答案 4 :(得分:6)

Eclipse v4.4(Luna)中,它的工作原理如下。

Enter image description here