I have checked out a svn repository using git svn. Now I need to checkout one of the branches and track it. Which is the best way to do it?
Standard Subversion layoutCreate a git clone of that includes your Subversion trunk, tags, and branches with git svn clone http://svn.example.com/project -T trunk -b branches -t tags The git svn clone http://svn.example.com/project --stdlayout Make your git repository ignore everything the Subversion one is: git svn show-ignore >> .git/info/exclude You should now be able to see all the Subversion branches on the git side: git branch -r Say the name of the branch in Subversion is git checkout -b waldo-svn remotes/waldo The -svn suffix is to avoid warnings of the form warning: refname 'waldo' is ambiguous. To update the git branch git checkout waldo-svn git svn rebase Starting from a trunk-only checkoutTo add a Subversion branch to a trunk-only clone, modify your git repository's [svn-remote "svn-mybranch"]
url = http://svn.example.com/project/branches/mybranch
fetch = :refs/remotes/mybranch
You'll need to develop the habit of running git svn fetch --fetch-all to update all of what git checkout -b mybranch-svn remotes/mybranch For the branches from which you intend to Further informationYou may also be interested in reading an answer to a related question. |
|||||||||||||
|