dmssantos / Comandos-git

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Comandos-git

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

About