奇怪的Git错误

时间:2014-10-23 00:23:16

标签: git github version-control

所以我得到了

*** Please tell me who you are.

Run

  git config --global user.email "you@example.com"
  git config --global user.name "Your Name"

to set your account's default identity.
Omit --global to set the identity only in this repository.

fatal: unable to auto-detect email address (got 'axmill@axmill-ThinkPad-T400.(none)')

错误。但是,我已经输入了我的电子邮件和姓名。

编辑:我试图提交,但它失败了。但我输入了我的电子邮件并使用git配置工具命名。

Git配置输出:

user.email=anchorfall551@gmail.com
user.name=Axmill

1 个答案:

答案 0 :(得分:0)

您可以使用以下方法检查全局配置和本地配置的内容:

git config --global -l
git config --local -l

您应该至少看到以下条目之一:

user.name=VonC
user.email=vonc@laposte.net

(没有引号)

确保使用正确的命令(例如this answer