收到错误未知命令:git cvsimport 上的“服务器”
Getting error Unknown command: `server' on git cvsimport
我按照 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 工作。
显示此错误的任何线索?
git-cvsimport
now exits less noisily and prints an appropriate
message when the installed cvs binary doesn't know the 'server
'
subcommand; this happens when cvs
is ./configure
'ed with
--disable-server
.
This ticket 提及:
The 'server
' command has been replaced with the 'preload
' command.
所有符合git-cvsimport
man page的:
git cvsimport
uses cvsps version 2, which is considered deprecated; it does not work with cvsps version 3 and later.
If you are performing a one-shot import of a CVS repository consider using cvs2git
or cvs-fast-export
.
试试那些最新的工具。
我按照 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 工作。 显示此错误的任何线索?
git-cvsimport
now exits less noisily and prints an appropriate message when the installed cvs binary doesn't know the 'server
' subcommand; this happens whencvs
is./configure
'ed with--disable-server
.
This ticket 提及:
The '
server
' command has been replaced with the 'preload
' command.
所有符合git-cvsimport
man page的:
git cvsimport
uses cvsps version 2, which is considered deprecated; it does not work with cvsps version 3 and later.
If you are performing a one-shot import of a CVS repository consider usingcvs2git
orcvs-fast-export
.
试试那些最新的工具。