til/git/deleting-remote-branch.md

8 lines
126 B
Markdown

You can delete remote branches with
```bash
git push -d <remote_name> <branchname>
# Example
git push -d origin featureX
```