Verifying CVS from the Windows Windows Command Prompt

Is there a way to check CVS using the Windows command line (cmd) based on the directory of branches, packages and destination?

+3
source share
2 answers
cvs -q -d <CVSROOT> co -r <BRANCH> -d <DESTINATION> <PACKAGE>
+3
source

CVS is a monolithic executable that does not have an API as such. Thus, to execute the CVS command, you use std :: system ("cvs command options") or similar, as on the command line.

0
source

Source: https://habr.com/ru/post/1715308/


All Articles