migrate scm-manager- svn repo to git repo's branch

146 views Asked by At

I'm using scm-manager;

In that i'm using SVN and git. I need to migrate a SVN repository to a git repository's branch.

Example :

SVN repository name: test-3.2

Git repository name : test-3.0

In this git-test-3.0, i need a branch as test-3.2. under that SVN repository test-3.2 was to be migrated with all its commit history.

How to do this?

1

There are 1 answers

3
Xire On

you can do this :

   $ git svn clone http://svn/repo/here/trunk

You have more details here : How to migrate SVN repository with history to a new Git repository?