eolas/neuron/4e66db01-35b6-4b9c-aab8-2a0429e30df2/Delete_a_branch.md
2024-11-14 14:15:53 +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>
```