Xcode 7 Git Setup失败:无法自动检测电子邮件地址

时间:2015-09-23 16:43:08

标签: ios xcode git version-control git-config

在Xcode 7上为新项目启用Git Repository Source Control时,它显示:

enter image description here

但是,即使我在终端中设置了user.name和user.email:

git config --global  user.name "John"
git config --global  user.email "john@example.com"

我使用

检查并查看终端
 git config --global -l

结果显示:enter image description here

我还使用以下方法检查了项目文件夹中的本地配置:

 git config --local -l

user.name和user.email未在本地设置。

但是我仍然无法提交,并且Xcode中的相同消息会弹出。 任何想法出了什么问题?请帮忙!

2 个答案:

答案 0 :(得分:2)

找到解决方案:

  1. 转到项目文件夹,查找./git目录
  2. 使用TextEditor打开文件“config”。
  3. 终端git config命令似乎没有正确应用于此配置文件。它是这样的: enter image description here
  4. 我改成了 enter image description here 并保存。
  5. 承诺,一切正常!
  6. 附注:关于如何在项目目录中找到隐藏的.git。 Xcode 5 - remove source control for project Show hidden file in Mac

答案 1 :(得分:0)

在终端

$ git config --global user.name "Your Name"
$ git config --global user.name
Your Name

$ git config --global user.email "Your email ID"
$ git config --global user.email
Your email ID

在本地(针对特定存储库) 在终端转到工作目录

$ git config user.name "Your Name"
$ git config user.name
Your Name

$ git config user.email "Your Email ID"
$ git config user.email
Your Email ID