vote up 0 vote down star

How can I checkout only the directory structure of a project (without any files) in a CVS repository? This could be useful, e.g., to know the structure itself, and selectively checkout the folders later. I might not be interested in, say, the test cases folder which might take too much space on my local hard disk.

flag

2 Answers

vote up 1 vote down

If you want only to know the structure itself, you can use cvs rls -R which lists recursively contents of the repository. From this output, you can filter out files and get directory hierarchy.

link|flag
Perhaps you meant "cvs ls -R"? – Jaywalker May 13 at 7:37
ls works with working copy, whereas rls works directly with repository. – mouviciel May 13 at 12:47
vote up 0 vote down

Adding a useful thing, might not the solution you seek. :) TortoiseCVS can show the structure without checking out the files.

link|flag
Yes but I would like to be able to export/ copy the structure in some text form. UI is good for viewing but bad for scripting. – Jaywalker May 13 at 5:26

Your Answer

Get an OpenID
or

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