From the man page:

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

So I removed a bunch of branches using

git push origin :staleStuff

and then ran

git remote prune origin

However, only one single local branch was pruned. Some of these branches were created by me, some by co-workers. Does this indicate that I wasn't tracking those branches correctly in the first place?

link|improve this question

feedback

1 Answer

up vote 12 down vote accepted

When you use git push origin :staleStuff, it automatically removes origin/staleStuff, so when you ran git remote prune origin, you have pruned some branch that was removed by someone else. It's more likely that your co-workers now need to run git prune to get rid of branches you have removed.

link|improve this answer
I understood the situation to be: the branches are still present locally but removed from remote repo. Now I want to remove all local branches that do not exist on the remote, therefore I run git prune. That's what "These stale branches have already been removed from the remote repository" says to me. Am I wrong? – Felixyz Nov 2 '10 at 15:04
You are right, but you may have misunderstood the meaning of "local branches" in case of git prune. Only branches in /refs/remotes/<remote_name>/ are subject to pruning; any branches in /refs/heads/ won't be touched - you have to manually manage these. – max Nov 2 '10 at 15:28
Aha, that's indeed what I thought. So there's no way to do what I want: automatically delete all branches in heads that are tracking remote branches, by checking if those remote branches are deleted? – Felixyz Nov 3 '10 at 19:11
There is no built-in command for that, but you may write such script yourself. Tracking branches can be identified by presence of branch.<branch_name>.merge config parameter. – max Nov 3 '10 at 19:48
feedback

Your Answer

 
or
required, but never shown

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