Hi
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 test
does nothinggit checkout origin/test
does something, butgit branch
says* (no branch)
. I am on no branch?
How do I share branches via a public repository?
Thank You.