I am trying to migrate SVN to Git using git svn clone on Windows
git svn clone -r302360:HEAD https://svnserver/svn/Development/myapi --prefix=svn/ --no-metadata --no-minimize-url --authors-file=authors.txt --stdlayout myapi```
The error I get is:
**Connection reset by peer: Error running context: Connection reset by peer at C:/Program Files/Git/mingw64/share/perl5/Git/SVN/Ra.pm line 312.**
, and when it happens, sometimes a dump file gets created with:
**0 [main] perl 30625 cygwin_exception::open_stackdumpfile: Dumping stack trace to perl.exe.stackdump**
And I see file stackdumpfile containing **STATUS_ACCESS_VIOLATION** got created after I tried re-running the git svn clone command above
[![enter image description here][1]][1]
[1]: https://i.sstatic.net/wgNR9.png
Here is what worked for me
git clone ...
as specified in question, it would eventually error with the "Connection reset by peer"
error after about 4 hrs into running during my migration process.git svn fetch
git svn fetch
.git svn fetch -r xxx:HEAD
where xxx is the next higher revision number from the one that I could no go beyond.For my repo, size about 2.5Gb and having about 45000 commits (so not large at all), this took about 7hrs to complete.
Another report of about the same size, took 1/3 off time though.
MORE INFO RE OTHER TOOLS