In my current repo I have the following output:

$ git branch -a
* master
  remotes/origin/master
  remotes/public/master

I want to delete 'remotes/public/master' from the branch list:

$ git branch -d remotes/public/master
error: branch 'remotes/public/master' not found.

Also, the output of 'git remote' is strange, since it does not list 'public':

$ git remote show 
origin

How can I delete 'remotes/public/master' from the branch list?

Update, tried the 'git push' command:

$ git push public :master
fatal: 'public' does not appear to be a git repository
fatal: The remote end hung up unexpectedly

Solution: The accepted answer had the solution at the bottom!

git gc --prune=now
link|improve this question

76% accept rate
feedback

6 Answers

up vote 114 down vote accepted

You might be needing a cleanup

git gc --prune=now

or you might be needing a prune

git remote prune public

   prune
       Deletes all stale tracking branches under <name>. These stale branches have already been removed from
       the remote repository referenced by <name>, but are still locally available in "remotes/<name>".

       With --dry-run option, report what branches will be pruned, but do no actually prune them.

However, it appears these should have been cleaned up earlier with

git remote rm public 

   rm
       Remove the remote named <name>. All remote tracking branches and configuration settings for the remote
       are removed.

So it might be you hand-edited your config file and this did not occur, or you have privelage problems.

Maybe run that again and see what happens.

link|improve this answer
$ git push public :master<br> fatal: 'public' does not appear to be a git repository<br> fatal: The remote end hung up unexpectedly<br> – Casey Jul 2 '09 at 2:48
1  
I don't want to delete the branch on the remote side. I think there is a subtle difference. – Casey Jul 2 '09 at 2:51
2  
er, the question is effectively asking "how do I delete a remote branch". Thats what those paths are. – Kent Fredric Jul 2 '09 at 2:52
I will rephrase the subject if that makes it more clear what I'm asking, but the command show exactly what my problem is. – Casey Jul 2 '09 at 2:57
24  
This isn't very good advice. Really all you need to do is git branch -rd origin/whatever It's that simple. There is no reason to call a gc here. – orange80 May 23 '11 at 18:36
show 4 more comments
feedback
git push public :master

This would delete the remote branch named master as Kent Fredric has pointed out.

To list remote-tracking branches:

git branch -r

To delete a remote-tracking branch:

git branch -rd public/master
link|improve this answer
7  
This is the correct answer. – orange80 May 23 '11 at 18:14
9  
git branch -rd works for me – alexanderb Jul 11 '11 at 8:05
4  
This helped me to remove a git-svn remote ghost branch. – Nick Sep 9 '11 at 14:03
2  
git branch -rd removed_remote/branch worked for me, while the git gc --prune=now was worthless. – softRli Nov 28 '11 at 8:14
1  
I've been able to use git prune without any issues, but my co-worker who forked our main repo **COULD ONLY ** use the git branch -rd public/master-style solution to clean his environment up. – Abel Martin Dec 1 '11 at 17:31
feedback

All you need to do is

$ git branch -rd origin/whatever 

It's that simple. There is no reason to call a gc here.

link|improve this answer
thank you, I tried everything to get this to work! – Haroon Nov 15 '11 at 14:03
feedback

git gc --prune=now is not what you want.

git remote prune public

or git remote prune origin # if thats the the remote source

is what you want

link|improve this answer
Why, what is the difference? – Casey Jun 29 '10 at 22:42
1  
@Casey $ git gc # does like a defragment for the git files to speed up the respository $ git remote prune origin # will clean up the delete the stale remote branches that show up with "git branch -r | grep origin". Thats what the question is asking I believe. So, the commands are totally different. – tongueroo Jul 14 '10 at 20:53
feedback

all you need to do is

$git fetch -p

It'll will remove all your local branches which are remotely deleted

link|improve this answer
feedback

The accepted answer didn't work for me when the ref was packed. This does however:

$ git remote add public http://anything.com/bogus.git
$ git remote rm public
link|improve this answer
This worked for me too! – Nick Sep 9 '11 at 7:11
feedback

Your Answer

 
or
required, but never shown

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