How do I make git-svn use a particular svn branch as the remote repository?
I am using git-svn to track development by s
If you've cloned the SVN repository properly (using -T -b -t or -s), you should be able to use the git branch commands like:
-T -b -t
-s
git reset --hard remotes/branch git checkout branch
etc.