I want to checkout a bunch of files from a CVS server.
Is there a way I can pass cvs command a file name which contains files I want to checkout
Is there another way of accomplishing that ?
views:
58answers:
2
+1
A:
You might want to take a look at the docs for the CVSROOT/modules
file and then define a regular module like this:
MyModule folder file1 file2 file3 [...]
You would then be able to do:
cvs co MyModule
Oliver Giesen
2010-08-10 12:37:47
+1
A:
Assuming you are using a bash-style shell:
cvs co $(< myfile)
Where myfile
contains the list of files you want to check out.
If you're talking about modules instead of files, Oliver Giesen's answer will be useful.
bstpierre
2010-08-13 21:22:01