Listar branches local: git branch
Listar branches remoto: git branch -a
Criando nova branch local: git branch
Criar nova branch local e trocar de branch: git checkout -b
Enviando branch local para remoto: git push origin
Trocar de branch: git checkout
Remover Branch local: git branch -d nome-da-branch
Remover Branch remoto: git push origin --delete nome-da-branch