eolas/neuron/8f51653f-9574-4f79-81a8-1f2ecc0ba592/Delete_a_branch.md
2025-01-01 15:57:56 +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>
```