Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
$ mkdir top ; cd top
$ git svn init -R svn -Ttrunk -ttags -bbranches http://www.talendforge.org/svn/top/ --no-minimize-url
$ git svn fetch svn
$ git for-each-ref refs/remotes/tags --shell --format="r=%(refname:short) t=\${r#tags/}" | \
while read e; do eval "$e"; git tag -f $t refs/remotes/$r; git branch -d -r $r; done
$ git push origin remotes/trunk master
$ for i in .git/svn/refs/remotes/* ; do git push origin remotes/`basename $i`:refs/heads/`basename $i` ; done
$ git push origin --tags