Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在给定分支、包和目标目录的情况下,有没有办法使用 Windows 命令行 (cmd) 从 CVS 中签出?
cvs -q -d <CVSROOT> co -r <BRANCH> -d <DESTINATION> <PACKAGE>
CVS 是一个单一的可执行文件,它没有这样的 API。因此,要执行 CVS 命令,您可以使用 std::system( "cvs command params" ) 或类似命令,就像您在命令行中所做的那样。