I have a file containing a number of tags contained in a a CVS repository. Is there a way I can checkout all the files and their associated directories using only these tags without checking out the whole repository?
I don't have a list of the directories in the repository so I can't run cvs co -r baz_1_0_0_0 foo/bar/baz
since I don't know where baz
is actually located.
I am running CVS 1.11 so I don't have commands like rls
available.
-r TAG
, you'll only get the files that have that tag. What are you seeing instead? – Coherencecvs co -r baz_1_0_0_0
I get an error that I mustspecify at least one module or directory
. Since what I am checking out is not a module I would need to specify a directory, but I don't know the directory ahead of time and I haven't been able to come up with a way to parse out the needed directories from some other command. – Inward