Tradução do TRY GIT para Português Brasileiro
$ git clone https://github.com/REPOSITORIO/REPOSITORIO.git
$ git init
$ git status
$ git add NOME_DO_ARQUIVO
$ git rm NOME_DO_ARQUIVO
$ git commit -m "Mensagem explicando o que foi feito na submissão"
$ git log
$ git remote add origin https://github.com/REPOSITORIO/REPOSITORIO.git
$ git push -u origin master
$ git pull origin master
$ git diff HEAD
$ git diff --staged
$ git reset NOME_DO_ARQUIVO
$ git checkout -- NOME_DO_ARQUIVO
$ git branch NOME_DO_BRANCH
$ git branch
$ git checkout NOME_DO_BRANCH
$ git merge NOME_DO_BRANCH
$ git branch -d NOME_DO_BRANCH