Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"RA layer request failed: REPORT request failed" during git-svn

Tags:

git

svn

git-svn

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.

like image 481
Nzbuu Avatar asked Dec 09 '11 20:12

Nzbuu


3 Answers

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
like image 194
Tobi Avatar answered Nov 15 '22 22:11

Tobi


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
like image 44
manojlds Avatar answered Nov 15 '22 21:11

manojlds


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.

like image 45
aardvarkk Avatar answered Nov 15 '22 21:11

aardvarkk