eolas/neuron/22c4bb42-86c2-4906-9753-27655e15c1d9/Delete_a_branch.md
2024-10-30 13:34:40 +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>
```