Posts by Juarez Lustosa • 295 points
1 post
-
14
votes3
answers97159
viewsA: How do I delete a local and remote Git branch(branch)?
You can use the following command: git push origin :nome_do_branch Paying attention to the : in front of the branch name, as it is the one who will cause the branch to be deleted, otherwise you…