Join the Stack Overflow Community
Stack Overflow is a community of 6.4 million programmers, just like you, helping each other.
Join them; it only takes a minute:
Sign up

This question already has an answer here:

Help me to delete git remote branch. I work with netbeans and I tried to delete remote branch from IDE but on delete branch deleted only localy.

share|improve this question

marked as duplicate by Pigueiras, Abizern, Eimantas, jszakmeister, krlmlr Mar 1 '14 at 12:10

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

    
Maybe it is not possible to do it in your NetBeans version: netbeans.org/bugzilla/show_bug.cgi?id=209644 – Pigueiras Sep 18 '13 at 8:51
up vote 33 down vote accepted

You can also use


git push origin --delete <yourBranchName>
share|improve this answer
$ git push origin :name-of-your-branch
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.