When you clone from a repository, git clone does a default checkout using
the branch referred to by HEAD. If HEAD does not exist on the remote repo,
git clone simply does not checkout any branch (but your local repo is ok).
At least that's what I understood from reading git-clone.sh.
You can see all the remote branches with
git branch -a
and checkout a new local branch on top of them with
git checkout -b local_branch remote_branch
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html