# Git Delete Branch Locally Remotely

```bash
## local
git branch -d BRANCH
git branch -D BRANCH # force delete
## Remote
git push origin --delete BRANCH
git remote prune origin
```
