til/git/deleting-remote-branch.md

8 lines
126 B
Markdown
Raw Normal View History

2022-03-25 22:41:48 +01:00
You can delete remote branches with
```bash
git push -d <remote_name> <branchname>
# Example
git push -d origin featureX
```