I\'m really new at this, so thanks for your patience (and dealing with my frustration).
I\'ve created a new Xcode project, put it under source control, and have successf
My workaround was to install GitHub for Mac. Installed, entered my credentials for GitHub, selected the repo, pulled then pushed and all is well...Doesn't explain what is wrong with XCode 5.1...
Were you successful or is the commit on github not from your xcode project?
Assuming you've already gone through the xcode steps of creating a new project and making some commits which you are now ready to push to github:
nyuman/Beaner2
. Don't change anything else on github. Don't add a README. git@github.com:nyuman/Beaner2.git
Open a Terminal window and navigate to your project directory. In that window run:
git remote add origin git@github.com:nyuman/Beaner2.git
git push origin master:master
Unless there are additional local branches you wish to push, your repos should now be in sync.