gitsvnmigrationsvn2git

Svn to git migration handling big repositories


I'm working on migration svn repository to git (gerrit) and I'm encountering issues regarding migrating big repository. I use svn2git.

fatal: malformed index info 10
error: git-svn died of signal 11
xxxxxx@svn2git-import:~$ Connection reset by XX.XXX.XX.XX

I added --log-window-sized in svn2git which is set to 100000.

Thank you for advance help!


Solution

  • I solved the issue by adding another 0 in log window size. Silly me.

    Just edit the svn2git -> /var/lib/gems/2.3.0/gems/svn2git-2.4.0/lib/svn2git/migration.rb

    add

    --log--window-size 9999999999999

    in

    git svn fetch

    solved my problem!