Skip to content

Instantly share code, notes, and snippets.

@cmkoller
Created August 19, 2015 20:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cmkoller/0644635e21eaec63e597 to your computer and use it in GitHub Desktop.
Save cmkoller/0644635e21eaec63e597 to your computer and use it in GitHub Desktop.

Git Cheat Sheet

Setting up your app with Git

git init

git add -A

git commit -m "First Commit"

Go set up your repo on Github

git remote add origin <your-remote-repo-url>

git push origin master

Making and pushing future commits

git add -A

git commit -m "Commit message"

git push origin master

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