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 .
Bonobo Git Server and SVN
1.7k views Asked by moh_sun At
3
There are 3 answers
1
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>
Git can import SVN projects
git svn clone <repo>
Taken from: http://git-scm.com/book/en/v2/Git-and-Other-Systems-Migrating-to-Git
More Resources:
https://www.atlassian.com/git/tutorials/migrating-overview/
How to migrate SVN repository with history to a new Git repository?