I've been trying to Git clone a Google Code SVN repository using the following command:
git svn clone --stdlayout https://wtorrent-project.googlecode.com/svn/ wtorrent-git
It gets as far as r11, then gives the following error message:
r11 = 6e04c0fb14aa3f6ab4d871eeed4a0526dc0e54d8 (refs/remotes/trunk)
RA layer request failed: REPORT request failed on '/svn/!svn/vcc/default': REPORT
of '/svn/!svn/vcc/default': 200 OK (https://wtorrent-project.googlecode.com) at
C:\Apps\msysgit/libexec/git-core\git-svn line 5653
This error message was generated by the latest msysgit (v1.7.8), but I get the same error message from my Gentoo box too.
I had the same error message with a different project (after 50000 revisions). For me it helped to tidy up the git repository and then continue fetching from svn:
$ git gc
$ git svn fetch
Revision 12 and hence 13, 14 are messed up ( someone added a branch trunk in branches, but later deleted it, and that confuses git-svn). You might want to do:
git svn clone -r 1:11 --stdlayout https://wtorrent-project.googlecode.com/svn/ wtorrent-git
cd wtorrent-git
git svn fetch -r 15:HEAD
For what it's worth, I fixed it by switching from cloning from secure HTTP (from SourceForge) to regular HTTP. So instead of cloning https://... I cloned http://. No problems after that.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With