eolas/neuron/c1b90fbf-731a-4de6-8c95-0dece40b5017/Delete_a_branch.md
2024-11-14 14:43: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>
```