Hello, Shlomo!

> Is it possible to watch the history of a CVS project (like "cvs log")
> without having a working directory of the project? I couldn't figure it out

"cvs log" and "cvs history" is not the same. "cvs history" works without
the working directory, as it is repository-wide.

"cvs log" works on separate files. You need to have a "home" in the CVS
sense to address specific files.

> To be more precise, I need to write a script which extracts (i.e., finds)
> the latest tags of a large list of CVS projects. I do not want to check-out
> all these projects just for the purpose of extracting the tags, since this
> would take a very long time, and is logically not needed. So, how can I do
> that?

This is a feature that should eventually be added "cvs export".
For now, use "cvs rdiff" against revision 0.

cvs -d your_cvs_root rdiff -r0 -s .

Regards,
Pavel Roskin

Reply via email to