Skip to content

Instantly share code, notes, and snippets.

@tgmarinho
Last active April 3, 2018 15:15
Show Gist options
  • Save tgmarinho/cf84ce160e09931c2759651b0e9219cd to your computer and use it in GitHub Desktop.
Save tgmarinho/cf84ce160e09931c2759651b0e9219cd to your computer and use it in GitHub Desktop.
remover a branch local e remota
Para apagar o branch localmente:
git branch -D <nome do branch>
Para apagar o branch remotamente:
git push <nome do origin> <nome do branch> --delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment