Esse arquivo irá ter todos os comandos do curso Git
$ git config --global user.name "Marcelo Bião"
$ git config --global user.email "marcelobiao2@gmail.com"
$ git init # Inicializa um repositório na pasta atual
$ git status # Checa o status do repositório atual
$ git clone <url> # Clona o repositório da url$ git log
$ git log --full-diff -p README.md$ git checkout -b <name> # Cria e faz checkout na nova branch
$ git checkout <name> # Altera entre as branches
$ git branch <name> # Cria uma nova branch
$ git branch -r #Checa branches remotas, caso haja$ git checkout -- <file> #Desfaz as mudanças$ git tag # Lista todas as tags
$ git tag -a v0.0.1 -m "Texto qualquer" # Adiciona uma nova tag
$ git show v0.0.1 # Mostra conteudo da tag
$ git tag -d v0.0.1 # Apaga uma tag$ git remote add origin <url>
$ git push -u origin master # apenas a primeira vez
```