TIL: Deleting remote branch

This commit is contained in:
Şahin Akkaya 2022-03-26 00:41:48 +03:00
parent bc1e1f2354
commit d153dcc737

View File

@ -0,0 +1,7 @@
You can delete remote branches with
```bash
git push -d <remote_name> <branchname>
# Example
git push -d origin featureX
```