git borrar rama local y remota code example
Example 1: git eliminar rama local
git branch -d nombre_rama
# Para forzar eliminación de ramas no mergeadas:
git branch -D nombre_rama
# Para eliminar una rama remota:
git push origin :nombre_rama
Example 2: git borrar rama local y remote
git push origin --delete {the_remote_branch}
Example 3: git borrar rama local y remote
$ git push <remote_name> --delete <branch_name>