git-svn匿名结帐失败-s

Dav*_*ser 3 authentication https anonymous git-svn

我正在尝试使用git克隆带有std布局的svn存储库(使用该-s选项).存储库https匿名使用(存储库位于https://secure.simplistix.com/svn/xlwt/).我可以使用很好地检查存储库svn,但是git-svn我得到密码提示然后无法检出(我没有此存储库的帐户):

Authentication realm:  Simplistix Subversion Server
Password for 'davidf': 
Authentication realm:  Simplistix Subversion Server
Username: 
Password for '': 
Authentication realm:  Simplistix Subversion Server
Username: 
Password for '': 
W: Ignoring error from SVN, path probably does not exist: (160013): Filesystem has no item: '/svn/!svn/bc/100/xlwt' path not found
W: Do not be alarmed at the above message git-svn is just searching aggressively for old history.
This may take a while on large repositories

生成的存储库完全为空

git-svn似乎假设如果存储库开头https,则需要进行身份验证.有办法解决这个问题吗?

Dan*_*idy 5

原因可能是匿名用户无法访问SVN存储库的根目录.

来自git help svn:

当跟踪多个目录(使用--stdlayout,--branches--tags选项)时,git svn将尝试连接到Subversion存储库的根目录(或允许的最高级别).如果整个项目在存储库中移动,则此默认设置允许更好地跟踪历史记录,但可能会导致读取访问限制到位的存储库出现问题.

由于您使用的是-s选项(简写--stdlayout),这会对您产生影响.

要防止git svn尝试连接到存储库的根目录,请将该选项添加--no-minimize-url到命令行.

另见:git help svn