无法访问 cvs 公共存储库匿名访问



我正在尝试将cvs迁移到git存储库。我试图测试它是如何工作的。所以我尝试使用文档访问 cvs 公共存储库

支持使用具有空密码的匿名帐户访问cvs存储库,但我无法访问它。

cvs -d :pserver:anonymous@cvs.infodrom.org:/var/cvs/$repository login
Logging in to :pserver:anonymous@cvs.infodrom.org:2401/var/cvs/config
CVS password: 
cvs [login aborted]: unrecognized auth response from cvs.infodrom.org: /usr/bin/cvs: unrecognized option '--allow_root=/var/cvs/debian'

如何使用匿名用户访问 cvs 存储库?

两点:

  1. 尝试使用infodrom而不是config作为$repository值,因为这就是此处记录的内容:http://www.infodrom.org/projects/cfingerd/cvs.php 和类似的项目,即

    CVS -d :pserver:anonymous@cvs.infodrom.org:/var/cvs/infodrom 登录

  2. 通常需要整个服务器端存储库来执行正确的 cvs2git,而不仅仅是客户端签出。您无法从网络上的存储库获得,只有当您是自己的 cvs 存储库的系统管理员时,您才能获得。

最新更新