Skip to content

Instantly share code, notes, and snippets.

@radmen
radmen / gist:2300725
Created April 4, 2012 12:13 — forked from smgoller/gist:1171102
git svn workflow
# 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