Jitendra
Jitendra

Reputation: 1203

How do i checkout files in a directory non recursively in CVS

I want to checkout files of a directory from cvs server using cvs checkout command, but it is checking out files in recursive directories fashion,which i dont want.Please help me out.

For example i have following directory structure in cvs server.

dir1/abc
dir1/xyz
dir1/xyz/a1/a11
dir1/xyz/a1/a12

and i want to checkout files which are in dir1 directory only.

Please help me out !!!!

Upvotes: 3

Views: 850

Answers (1)

plaintext
plaintext

Reputation: 96

You can use the -l option to achieve this.

cvs checkout -l dir1

Cvs will not recurse into subdirectories.

Upvotes: 4

Related Questions