eolas/neuron/28270bf1-8ccb-4761-85b3-c2af3fa8014c/Delete_a_branch.md
2024-11-19 17:43:51 +00:00

17 lines
170 B
Markdown

---
tags: [git]
---
# Delete a branch
### Locally
```bash
git branch -d <local_branch_name>
```
### Remote
```bash
git push origin --delete <remote_branch_name>
```