Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dilipiOSDeveloper/dbb13f2e4fbdf581b3d8269fec4048f9 to your computer and use it in GitHub Desktop.
Save dilipiOSDeveloper/dbb13f2e4fbdf581b3d8269fec4048f9 to your computer and use it in GitHub Desktop.
Git Commands to add Project to Github
git init
git add .
git commit -m "Initial project setup"
git remote add origin urlProject // urlProject is url of project u want to add
git push -u origin master // git push -f origin master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment