mirror of
https://github.com/sahinakkaya/til.git
synced 2024-11-14 13:09:37 +01:00
8 lines
126 B
Markdown
8 lines
126 B
Markdown
|
You can delete remote branches with
|
||
|
```bash
|
||
|
git push -d <remote_name> <branchname>
|
||
|
|
||
|
# Example
|
||
|
git push -d origin featureX
|
||
|
```
|