Git cheatsheet
Posted on July 22, 2013
Git cheatsheet
Add sourcecode to local Git repo
git init
git add .
git commit -m "first commit"
Status
git status
Get updates from remote repo
git pull
Send updates to remote repo
git push