我一直在尝试使用以下命令Git克隆Google Code SVN存储库:
git svn clone --stdlayout https://wtorrent-project.googlecode.com/svn/ wtorrent-git
Run Code Online (Sandbox Code Playgroud)
它到r11,然后给出以下错误消息:
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
Run Code Online (Sandbox Code Playgroud)
此错误消息是由最新的msysgit(v1.7.8)生成的,但我也从Gentoo框中收到相同的错误消息.
man*_*lds 12
修订版12和13,14混乱了(有人在分支中添加了分支主干,但后来删除了它,并且混淆了git-svn).你可能想做:
git svn clone -r 1:11 --stdlayout https://wtorrent-project.googlecode.com/svn/ wtorrent-git
cd wtorrent-git
git svn fetch -r 15:HEAD
Run Code Online (Sandbox Code Playgroud)