eolas/neuron/49f263fa-b010-4202-8767-95c67ea3225e/Delete_a_branch.md
2024-10-22 18:18:35 +01: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>
```