我可以在Terminal中正常提交,但不能在Xcode中。有办法解决吗?还是直接在Xcode中输入配置信息?
这是错误信息:
*** Please tell me who you are.
Run
06000
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
‘myemail@gmail-1040826.(none)’)
这是我的.gitconfig(我的名字替换了我的名字,我的用户名为“myname”,为隐私)
myname-1040826:Project myname$ git config -luser.email=myname@gmail.comuser.name=My namefilter.media.clean=git-media-clean %ffilter.media.smudge=git-media-smudge %fcore.repositoryformatversion=0core.filemode=truecore.bare=falsecore.logallrefupdates=truecore.ignorecase=truecore.precomposeunicode=truesubmodule.PeerKit.url=https://github.com/jpsim/PeerKit.git解决方法 看起来Xcode没有读取全局GIT设置。如果您遇到此问题,请通过终端将您的姓名和电子邮件地址发送到具体项目:
git config user.email "you@example.com" git config user.name "Your name"
注意:当您执行上述 *** 作时,请确保您在项目的目录中。
总结以上是内存溢出为你收集整理的ios – Xcode 7 GM无法提交(GIT)全部内容,希望文章能够帮你解决ios – Xcode 7 GM无法提交(GIT)所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)