DarkPlaymo
DarkPlaymo

Reputation: 11

Delete remote branch in SAP Web IDE

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

Answers (1)

Sebastian Limbach
Sebastian Limbach

Reputation: 85

Clone the repo locally and simply run:

git push origin --delete branch_to_delete

Upvotes: 1

Related Questions