Skip to content

Instantly share code, notes, and snippets.

@tonyalbor
Created April 6, 2014 02:13
Show Gist options
  • Save tonyalbor/10000656 to your computer and use it in GitHub Desktop.
Save tonyalbor/10000656 to your computer and use it in GitHub Desktop.
uploading an xcode project to github
// adding xcode project to github
// create git repo on github
// go to directory with .xcodeproj file
git init
git add .
git commit -m 'initial commit'
git remote add origin git@github.com:tonyalbor/REPOSITORY.git
git pull origin master
git push origin master
@jacksanford1
Copy link

fatal: Could not read from remote repository.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment