A word of warning: I\'m a n00b to git in general. My team uses feature branches in svn, and I\'d like to use git-svn to track my work
git
svn
git-svn
Muchas gracias to Bart's Blog for this handy reference for svn branches in git. Apparently all I needed was to specify a remote branch when creating the git branch, e.g.,
git checkout -b git-topic-branch-foo foo
where foo is the name of the remote branch.
foo