eolas/neuron/23e0f0eb-f9c9-467a-86da-ba26a6fd9b56/Delete_a_branch.md
2025-01-21 17:10:11 +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>
```