vote up 0 vote down star

Hi,

Is there a way to check out from CVS using windows command line (cmd) given the branch, package and destination dir?

thanks :)

Oded

flag

52% accept rate

2 Answers

vote up 1 vote down check
cvs -q -d <CVSROOT> co -r <BRANCH> -d <DESTINATION> <PACKAGE>
link|flag
thank you! it works. – Oded Aug 17 at 10:23
vote up 0 vote down

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.

link|flag
I know that I should use the system(char*) command. Just was looking for the right string command. – Oded Aug 17 at 9:24
You might want to rephrase your question then, removing references to C++ and VS, which have nothing to do with the issue. – Neil Butterworth Aug 17 at 9:26
Rephrased. thanks. – Oded Aug 17 at 9:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.