eolas/neuron/4b848157-992a-4aaf-9f84-ac12ec2edc55/Delete_a_branch.md
2024-10-19 12:00:05 +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>
```