Git Delete Branch Locally Remotely
Git
## local
git branch -d BRANCH
git branch -D BRANCH # force delete
## Remote
git push origin --delete BRANCH
git remote prune origin
## local
git branch -d BRANCH
git branch -D BRANCH # force delete
## Remote
git push origin --delete BRANCH
git remote prune origin