I have a local Git repository in ~/local_repo. It has a few branches: $ git branch * master rails c c++ To clone the local repository, I do: $ git clone ~/local_repo new_repo Initialized empty Git repository in /home/username/new_repo/.git/ The new_repo master branch points to the local_repo master branch, and I can push / pull. But I am unable to clone another branch. I want to only pull the bran
