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.)
| |||
|
feedback
|
| |||||||
feedback
|
|
try
| |||
feedback
|
| |||||||
feedback
|
git fetchandgit remote updatedon't fetch all the remote's branches? Because otherwise you could just fetch then usegit branch -r... – Jefromi Aug 12 '10 at 23:40git branch -rwas only showing me remote branches that I had tracked locally. It's working better now. – James A. Rosen Aug 13 '10 at 0:02