We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b76f3c9 + 8a26365 commit aa62766Copy full SHA for aa62766
README.md
@@ -115,6 +115,12 @@ git branch -d <local_branchname>
115
116
## Delete remote branch
117
```sh
118
+git push origin --delete <remote_branchname>
119
+```
120
+
121
122
+__Alternatives:__
123
+```sh
124
git push origin :<remote_branchname>
125
```
126
tips.json
@@ -57,7 +57,8 @@
57
},
58
{
59
"title": "Delete remote branch",
60
- "tip": "git push origin :<remote_branchname>"
+ "tip": "git push origin --delete <remote_branchname>",
61
+ "alternatives": ["git push origin :<remote_branchname>"]
62
63
64
"title": "Undo local changes with the last content in head",
0 commit comments