mirror of
https://github.com/sahinakkaya/til.git
synced 2025-04-19 17:22:07 +02: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
|
|
```
|