eolas/neuron/d51b0102-d73a-44e4-ad82-a3be740837e0/Delete_a_branch.md
2025-03-27 17:56:31 +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>
```