我按照git-cvsimport文档将遗留代码从CVS移植到git。已安装cvsps 2.1版并添加到路径中。
跑git cvsimport -C <destination_folder> <project_folder_with_cvs>
收到错误:
Unknown command: `server'
CVS commands are:
add Add a new file/directory to the repository
admin Administration front end for rcs
.
.
(Specify the --help option for a list of other help options)
Failed to read from server at D:\Git\mingw64/libexec/git-core\git-cvsimport line 420.
我在Windows 10中工作。 是否显示出此错误的任何线索?
答案 0 :(得分:1)
git-cvsimport
现在退出的次数较少,并打印出适当的内容 安装的cvs二进制文件不知道&#39;server
&#39; 子;如果cvs
为./configure
,则会发生这种情况--disable-server
。
This ticket提及:
一致的内容&#39;
server
&#39;命令已替换为&{39;preload
&#39;命令。
git cvsimport
使用 cvsps版本2 ,这被视为已弃用; 它不适用于cvsps版本3及更高版本 如果您正在执行CVS存储库的一次性导入,请考虑使用cvs2git
或cvs-fast-export
。
请尝试使用这些最新工具。