I understand (as of just now) that when I clone a repo, I don't really clone it, I just bring the master down - this is how it works, right?
So I need to checkout a remote branch with tracking, that's fine, but how do I see the remote branches to know what I can checkout?
Update
So it turns out I should see them locally using git branch -a
or -r
but I don't. So my question remains, if all my branches have been pushed to remote, how do I see them? Where are they?
Luke