+ 1
What's the Git bash command to delete a branch?
Thanks for your help.
2 Respuestas
+ 2
Local branch:
git branch -d the_local_branch
Remote branch:
git push origin --delete the_remote_branch
Source:
https://makandracards.com/makandra/621-git-delete-a-branch-local-or-remote
0
Thanks 👍