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
@ReusRk
Copy link

ReusRk commented Jul 20, 2016

fatal: Could not read from remote repository because you already set path of particular folder, @ try change path at another folder @ it solve my same problem

@KorayiDC
Copy link

and if I would update my project, how would I push it to github?
Do I have to do all these steps again?

@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