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

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

我如何提供对这个列表的更改,或删除一些作者或提交者?

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

在这里输入图像说明

  1. 点击首选项>团队> Git>configuration
  2. 点击新build条目并input键值对:

    • 键: user.name
    • 值: YourUsernameHere

    • 密钥: user.email
    • 值: YourEmailHere

EGit应该问你第一次提交的东西。 但是你可以随时改变它,看看这里: http : //wiki.eclipse.org/EGit/User_Guide#Identifying_yourself

每个开发者应该执行:

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

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

在Eclipse v4.4 (Luna)中,它将按照下面的方式工作。

在这里输入图像说明

在全球范围内更改提交者姓名和电子邮件地址

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

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

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

如果只想在特定存储库中使用特殊设置,则可以简单地省略--global标志。 这使configuration仅在该存储库中有效:

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