Hi, Dave,
To list modules:
cvs co -c
But this depends on the contents of CVSROOT/modules
To list the contents of a repository directory:
cvs rdiff -s -r 0 directoryname
or the contents of a module:
cvs rdiff -s -r 0 modulename
To list every file in your entire repository:
cvs rdiff -s -r 0 .
To just dump the entire CVSROOT modules file:
cvs -q co -p CVSROOT/modules
I like to do that sometimes because "cvs co -c" gives only the modules in
sorted order, but "cvs co -p CVSROOT/modules" spits out the modules file
exactly as it is, with your own formatting and comments.
Cheers,
Jerry
> From: Dave Sherohman [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, April 13, 2000 8:49 AM
>
> So where does one get cvsls? Searches on Freshmeat and Google come up
> empty... Or any other (non-web-based) way of getting a list
> of projects in a
> CVS repository and/or a list of tags on a project?