I've tried git branch -r, but that only lists remote branches that I've tracked locally. How do I find the list of those that I haven't? (It doesn't matter to me whether the command lists all remote branches or only those that are untracked.)

link|improve this question

75% accept rate
You mean you've modified the default refspec, so that git fetch and git remote update don't fetch all the remote's branches? Because otherwise you could just fetch then use git branch -r... – Jefromi Aug 12 '10 at 23:40
I must have. git branch -r was only showing me remote branches that I had tracked locally. It's working better now. – James A. Rosen Aug 13 '10 at 0:02
feedback

3 Answers

up vote 8 down vote accepted
git ls-remote <remote-name>
link|improve this answer
1  
You could grep the output for refs/heads to avoid seeing all the tags, which are likely the same ones you have. – Jefromi Aug 12 '10 at 23:15
@Jefromi's suggestion will significantly clean up the output if you're working on a bigger repo: $ git ls-remote origin | grep refs/heads/ – longda Feb 29 at 20:52
feedback

try

 git branch -at
link|improve this answer
The -t option affects behavior when creating branches. Nothing to do with this. – Jefromi Aug 12 '10 at 23:11
feedback
git branch -a | grep remotes/*
link|improve this answer
This is basically equivalent to git branch -r, which the OP said wasn't good enough. – Jefromi Aug 12 '10 at 23:10
1  
actually both git branch -a and git branch -r list all remote branches for me, I'm not sure if what the OP said is true. I just setup a test repository and verified this (only had master tracking origin/master but still saw all remote branches with both flags). – Idan K Aug 13 '10 at 11:01
feedback

Your Answer

 
or
required, but never shown

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