Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I created a bugfix branch to fix a bug on a project that I had forked on GitHub. I issued 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 remotes/origin/bugfix branch both locally and on GitHub?

share|improve this question

11 Answers

up vote 1977 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 <branchName>

which is easier to remember than

git push origin :<branchName>

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).

share|improve this answer
21  
@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 '12 at 0:16
8  
+1 exactly what I was looking for, and you can even specify more than one branch like: git push origin --delete branch1 branch2 branch3. Thanks! – javanna Feb 7 '12 at 15:29
28  
If you know the syntax git push origin local_branch:remote_branch, then the syntax to delete a branch with git push origin :remote_branch is kind of cute. There's a void before the : – Marc-André Lafortune May 11 '12 at 4:05
6  
You may also want to follow up with git remote prune origin, right? – Jesse Glick Jul 24 '12 at 15:36
1  
@jesse-glick According to the manual In most cases, users should run git gc, which calls git prune. – Answerbot Oct 20 '12 at 17:15
show 5 more comments

Matthew's answer is great for removing remote branches and I also appreciate the explanation, but to make a simple distinction between the two commands:

To remove a local branch from your machine:

git branch -d the_local_branch

To remove a remote branch:

git push origin :the_remote_branch

*Taken from here.

share|improve this answer
8  
Thank you, Eric. Your clarification is concise and lucid. – Ram Narasimhan Aug 16 '12 at 1:35
4  
This was just what I needed. The 'remote branch' command gave me: error: unable to push to unqualified destination: name The destination refspec neither matches an existing ref on the remote nor begins with refs/, and we are unable to guess a prefix based on the source ref. (in case anyone googles this) – Thomas Ahle Sep 18 '12 at 21:56
@ThomasAhle I am getting the same error with git push origin --delete <remote_branch_name> Did you figure out what the problem was? – user815423426 Oct 3 '12 at 15:51
2  
we can also use git branch -D the_local_branch – vajapravin Feb 19 at 7:55

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.

share|improve this answer

Another approach is git push --prune origin. This will delete all remote branches that do not exist locally.

More comprehensively, git push --mirror will effectively make the remote look like the local copy of the repo (local heads, remotes and tags are mirrored on remote).

share|improve this answer
git push --prune doesn't appear to exist in version 1.7.9.msysgit.0 (which is what I appear to be running). – Owen Blacker Jan 29 at 19:28
--mirror works great in case several local "branch deletes" need to be synced up with the origin. – tolitius Feb 13 at 0:12

I use the following in my bash settings:

alias git-shoot="git push origin --delete"

Then you can call:

git-shoot branchname

share|improve this answer
4  
reminds me alias please="sudo" – Mohsen May 15 at 17:56

Tip: When you delete branches using git branch -d <branchname> or git push origin :<branchname> the reference is only deleted locally. This means that for other team members the deleted branches are still visible when they do a git branch -a.

To solve this your team members can prune the deleted branches with git remote prune <repository>, this is typically git remote prune origin.

share|improve this answer
You should clarify that the above git push operation deletes the local branch and the remote branch. – Adam Backstrom May 21 at 13:51

If you want to complete both these steps with a single command, you can make an alias for it by adding the below to your ~/.gitconfig:

[alias]
    rmbranch = "!f(){ git branch -d ${1} && git push origin --delete ${1}; };f"

Alternatively, you can add this to your global config from the command line using

git config --global alias.rmbranch '!f(){ git branch -d ${1} && git push origin --delete ${1}; };f'

NOTE: If using -d (lowercase d), the branch will only be deleted if it has been merged. To force the delete to happen, you will need to use -D (uppercase D).

share|improve this answer

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.

share|improve this answer

Since January 2013 Github included a "delete branch" button next to each branch in your "branches" page: https://github.com/blog/1377-create-and-delete-branches

share|improve this answer

git branch -D branch_name will delete branch locally

share|improve this answer

You can also do this git remote prune origin

$ git remote prune origin
Pruning origin
URL: git@example.comyourrepo.git
 * [pruned] origin/some-branchs

prune delete remote-tracking branches from git branch -r listing

share|improve this answer

protected by Community Jan 20 at 21:48

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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