Hi,
Is there a way to check out from CVS using windows command line (cmd) given the branch, package and destination dir?
thanks :)
Oded
Hi,
Is there a way to check out from CVS using windows command line (cmd) given the branch, package and destination dir?
thanks :)
Oded
CVS is a monolithic executable, which doesn't have an API as such. So to execute a CVS command, you use std::system( "cvs command params" ) or similar, just as you would have done from the command line.
cvs -q -d <CVSROOT> co -r <BRANCH> -d <DESTINATION> <PACKAGE>