Bonobo Git Server and SVN

1.7k views Asked by At

I've installed Bonobo Git Server (3.4.2.0) locally. I have a SVN server that contains old repositories? How can I import these repositories to work under Bonobo Git Server .

3

There are 3 answers

0
Pete On

What I did was

1 Create a new repo in Bonobo

2 Clone that to my desktop

3 In the clone,

git svn init http://192.168.x.y/svn/my_repo/trunk
git svn fetch
git push origin master
1
snoopy-do On

I too, was/is in the same boat having to migrate our SVN repositories to git (using Bonobo server).

Pretty much followed the instructions in Troy Hunts' blog post here

I deviated by creating an authors file to map svn users to git users, thus appending --authors ../authors.txt to the svn2git command line.

When supplying an authors file, svn2git will stop if there is no record in the file.

The authors file format is 1 line per author
SVNUser = Full Name <email@domain>