如何使用GIT集成在Intellij 14中设置user.email和user.name?

时间:2015-06-06 00:44:08

标签: git intellij-idea version-control intellij-14

我有集成了GIT的IntelliJ 14。 git push命令将作者显示为unknown。如何在IntelliJ IDE中设置以下两个参数?

git config --global user.name "Sam Smith"
git config --global user.email sam@example.com

6 个答案:

答案 0 :(得分:15)

  1. Ctrl + K 以打开提交对话框
  2. 将以下模式输入" Git / Author:"下拉字段,用个人数据替换部件(保留空格和尖括号字符):
  3. Name Surname <Email>
    

答案 1 :(得分:5)

您可以通过 GIT 集成设置 Intellij 14 的用户名和电子邮件,如下所示。这对我有用。

转到已初始化的项目。

然后启用隐藏的文件夹并找到“ .git”并进入该文件夹。

找到名为“ config”的文件,然后添加以下代码并保存。

[user]
      name = username
      email = username@domaim.com

答案 2 :(得分:3)

当您进入提交对话框时,只需使用Ctrl + Space打开用户列表并选择一个。

enter image description here

答案 3 :(得分:2)

如果我是你,我会在命令提示符中复制并粘贴这两行;这将设置适当的值,包括IDE。

如果你真的想出于某些原因通过IDE设置它,我会按照here的说明进行操作。

答案 4 :(得分:2)

假设您已经从git-scm.com安装了git。

对于Linux或Mac OS使用终端。

对于Windows环境: 使用git bash(与git安装一起提供)或使用Powershell。

运行:

git config --global user.name "Sam Smith"
git config --global user.email sam@example.com

棘手的部分是:您必须至少从终端提交一次。

git add my_awesome_file
git commit -m "My commit message"

薇奥拉!现在,您的作者将显示在IntelliJ提交面板中。

(注意:如果您使用不同的电子邮件使用不同的存储库,请不要使用全局配置)

答案 5 :(得分:1)

以下为我工作

root:〜/ git_workspace / dummyproject $ git config --global user.name“ Krunal.Chauhan” 根目录:〜/ git_workspace / dummyproject $ git config --global user.email krunal@abcd.com

设置用户名和电子邮件,然后我提交了代码并将其推送到git。 因此变化已经得到体现。 enter image description here

并在git上验证 enter image description here