Xcode git自动检测电子邮件错误

前端之家收集整理的这篇文章主要介绍了Xcode git自动检测电子邮件错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用 Xcode 7,我在将代码提交给git时遇到了问题.
I get this error:

*** 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 'stevex@stevebookpro.(none)')

我试过建议的git命令;当我在存储库中运行git config user.email时,我看到了一个正确的电子邮件地址.我没有看到它从哪里拉出不正确的.

解决方法

和大多数人一样,我希望,我有正确的user.email和user.name全局设置,之前从未遇到过Xcode的问题.

我发现通过制作这些设置本地Xcode再次开心.

那是:

cd <YourCodeRepository>
xcrun git config user.email "you@example.com"
xcrun git config user.name "Your Name"
原文链接:https://www.f2er.com/iOS/328166.html

猜你在找的iOS相关文章