Reputation: 11
I created a remote Branch but with the wrong name and now I want to delete the remote branch. The problem is I don't now how because if I right-click one the Project->Git there is only an option to create a remote branch but no option to delete one.
I hope you can help me.
Upvotes: 0
Views: 1102
Reputation: 85
Clone the repo locally and simply run:
git push origin --delete branch_to_delete
Upvotes: 1