git init
git add .
git commit -m "Mensagem"
git commit -am "Mensagem"
git status
git diff --staged
git reset <arquivo>
git log
git show --stat COMMIT_ID
git remote add origin https://github.com/rtenorioh/comandos-git.git
git push -u origin master
git pull origin master
git diff HEAD
git checkout -- <arquivo>
git branch <branch>
git checkout <branch>
git rm '<arquivo>'
git branch -d <branch>
git tag -a v1.4 -m 'my version 1.4'