eolas/neuron/9445c5fd-135c-4b0b-a70c-7a6fd45d9d58/Delete_a_branch.md
2025-04-05 10:32:40 +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>
```