eolas/neuron/07e52cd3-8c5d-41a3-b133-26fda809825e/Delete_a_branch.md
2024-10-23 15:13:38 +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>
```