Earlier this week, I needed to work on a feature branch on the company’s subversion repository. (The one I did a git copy of a month ago).
Imagine my surprise when I couldn’t see the feature branch with git branch -r. The command shows all the branches and tags in a git repository. The branch was created after my initial cloning, and was not pulled down with subsequent git svn rebase.
It turned out to get subversion branches created after cloning, you need to do a fetch instead.
git svn fetch git branch -r
Reading the git-svn man page more carefully, rebase only fetches revisions from the SVN parent of the current HEAD. In comparison, fetch fetches unfetched revisions from the tracked Subversion remote.