I created a bugfix branch to fix a bug on a project that I had forked on Github. I gave a pull request to the developer to incorporate my fix, but the developer decided to implement a different fix for the problem. At this point, I want to delete the bugfix branch both locally and on my project fork on Github.

Successfully Deleted Local Branch

$ git branch -D bugfix
Deleted branch bugfix (was 2a14ef7).

Attempts to Delete Remote Branch

$ git branch -d remotes/origin/bugfix
error: branch 'remotes/origin/bugfix' not found.
$ git branch -d origin/bugfix
error: branch 'origin/bugfix' not found.
$ git branch -rd origin/bugfix
Deleted remote branch origin/bugfix (was 2a14ef7).
$ git push
Everything up-to-date
$ git pull
From github.com:gituser/gitproject
 * [new branch]         bugfix  -> origin/bugfix
Already up-to-date.

What do I need to do differently to successfully delete the branch remotes/origin/bugfix both locally and on Github? Thanks.

Preliminary Research / Related StackOverflow Questions

link|improve this question

79% accept rate
feedback

4 Answers

up vote 484 down vote accepted

Updated Answer on 1-Feb-12

As of Git v1.7.0, you can delete a remote branch using

git push origin --delete branch

The above is syntactic sugar for

git push origin :branch

which was added in Git v1.5.0 "to delete a remote branch or a tag."

Therefore, the version of Git you have installed will dictate whether you need to use the easier or harder syntax.

Original Answer from 5-Jan-10

From Chapter 3 of Pro Git by Scott Chacon:

Deleting Remote Branches

Suppose you’re done with a remote branch — say, you and your collaborators are finished with a feature and have merged it into your remote’s master branch (or whatever branch your stable codeline is in). You can delete a remote branch using the rather obtuse syntax git push [remotename] :[branch]. If you want to delete your serverfix branch from the server, you run the following:

$ git push origin :serverfix
To git@github.com:schacon/simplegit.git
 - [deleted]         serverfix

Boom. No more branch on your server. You may want to dog-ear this page, because you’ll need that command, and you’ll likely forget the syntax. A way to remember this command is by recalling the git push [remotename] [localbranch]:[remotebranch] syntax that we went over a bit earlier. If you leave off the [localbranch] portion, then you’re basically saying, “Take nothing on my side and make it be [remotebranch].”

I issued git push origin :bugfix and it worked beautifully. Scott Chacon was right—I will want to dog ear that page (or virtually dog ear by answering this on StackOverflow).

link|improve this answer
7  
Thanks for this. – Trent Scott Apr 26 '11 at 16:01
4  
Awesome, it works! – Mosselman Jun 26 '11 at 20:03
what's that serverfix? @TrentonScott – gumuruh Feb 1 at 7:22
-1 because --delete is an easier syntax – Jared Beck Feb 1 at 17:07
5  
@Jared: The --delete may be easier for some people to remember, but that syntactic sugar wasn't added until version 1.7.0. I've updated my answer to reflect this. – Matthew Rankin Feb 2 at 0:16
show 2 more comments
feedback

You can also use the following to delete the remote branch $ git push origin --delete serverfix which does the same thing as $ git push origin :serverfix but may be easier to remember.

link|improve this answer
feedback

In addition to the other answers, I often use the git_remote_branch tool:

https://github.com/webmat/git_remote_branch

It's an extra install, but gets you a convenient way to interact with remote branches. In this case, to delete:

grb delete branch

I find that i also use the publish and track commands quite often.

link|improve this answer
feedback

When you use push/pull. Git will try to make local and remote repos identical. So you modify one side, then another side would get te same modification as well after pull/push.

link|improve this answer
you need to explicitely tell it to delete branches though – xav0989 Feb 20 at 12:17
feedback

Your Answer

 
or
required, but never shown

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