Xcode 7 GM can not authenticate git repository Xcode 7 GM can not authenticate git repository xcode xcode

Xcode 7 GM can not authenticate git repository


The problem is that you are using the SSH remote URL:

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

You will need to switch to the HTTPS remote URL.

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

Alternatively, just give up. Stop trying to use Xcode's internal git management. (It's pretty terrible, so no harm done.) If you want a GUI, use SourceTree; it's from the same people who give you Bitbucket and works with it beautifully.