eolas/neuron/3cd71ed3-2c64-460c-92b8-94889befa1fe/Delete_a_branch.md
2024-12-27 14:21: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>
```