I have a master and a development branch, both pushed to GitHub. I\'ve cloned, pulled, and fetched, but I re
master
development
clone
pull
fetch
A git clone is supposed to copy the entire repository. Try cloning it, and then run git branch -a. It should list all the branches. If then you want to switch to branch "foo" instead of "master", use git checkout foo.
git clone
git branch -a
git checkout foo