mirror of
https://github.com/sahinakkaya/til.git
synced 2025-07-17 14:01:49 +03: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
|
|
```
|