I am trying to checkout a remote branch:
Somebody pushed a branch called test with git push origin test to a shared repository. I can see the branch with git branch -r. But how can I get this branch?
git checkout testdoes nothinggit checkout origin/testdoes something, butgit branchsays* (no branch). I am on no branch?
How do I share branches via a public repository?