This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# adapted from http://notes.jimlindley.com/2008/3/25/git-svn-that-works-for-me | |
# initial setup | |
git svn init <svn_repo> | |
git svn fetch -r HEAD | |
# alternate way - when there's need to use branches etc | |
git svn clone --trunk=devel --branches=branches -r NUM <svn_repo> # NUM is one of the latest revisions | |
git svn fetch | |
# alternate way - END |