Xcode 7 GM无法validationgit存储库

我可以提交到这个存储没有问题的Xcode 6。git仍然在terminal工作正常,我可以提交本地和远程。 在Xcode 7中,我可以在本地但不能远程提交。 它表示身份validation失败,并且不可能重置用户名。 (这是灰色的)。 我有我的本地gitconfiguration文件中正确的用户名。 我也尝试创build一个新的帐户,但最终的问题是无法inputuserName。

我的gitconfiguration – 本地 – 列表

core.repositoryformatversion=0 core.filemode=true core.bare=false core.logallrefupdates=true core.ignorecase=true core.precomposeunicode=true remote.origin.url=git@bitbucket.org:myUserName/myProject.git remote.origin.fetch=+refs/heads/*:refs/remotes/origin/* branch.failedTryToRename.remote=origin branch.failedTryToRename.merge=refs/heads/master branch.master.remote=origin branch.master.merge=refs/heads/master branch.master1.remote=origin branch.master1.merge=refs/heads/master user.name=myUserName user.email=myUserName@gmail.com 

XcodeAccountsScreen

问题是您正在使用SSH远程URL:

 remote.origin.url=git@bitbucket.org:myUserName/myProject.git 

您将需要切换到HTTPS远程URL。

 git remote set-url origin https://bitbucket.org/myUserName/myProject.git 

或者,放弃。 停止尝试使用Xcode的内部gitpipe理。 (这是非常可怕的,所以没有任何伤害。)如果你想要一个GUI,使用SourceTree; 它是从同样的人给你Bitbucket和美丽的作品。