Tim Wensink wrote:
> 
> Hello all,
> 
> I have a question regarding CVS tags. I want to have a list of files
> that are in a certain release. Is there a command within (win)cvs that
> allows me to specifiy a certain tag and then generates a list of all
> the files that have that tag?

Saw lots of responses to this with various options to "cvs co"...
In the past, people have mentioned that "cvs rdiff -s" works well.

cvs rdiff -s -r 0 -r some_tag some_module

Gives you not just the filenames, but the revisions numbers too
(Assumes you have no file with a revision of 0, which you don't
most likely.)

example:
[scameron@zuul usrc]$ cvs rdiff -s -r 0 -r efs_x42_dev_br autobuild
cvs server: Diffing efs/unix/autobuild
File efs/unix/autobuild/autobuild is new; current revision 1.11.2.1
File efs/unix/autobuild/autobuild.html is new; current revision 1.4
File efs/unix/autobuild/build_warning is new; current revision 1.3
File efs/unix/autobuild/devel_list.txt is new; current revision 1.10.2.2
File efs/unix/autobuild/dist_list.txt is new; current revision 1.12.2.2
[...etc...]



__________________________________________________
Do You Yahoo!?
Spot the hottest trends in music, movies, and more.
http://buzz.yahoo.com/

_______________________________________________
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs

Reply via email to