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