Generate list of of files (with revision) which belongs to a specific cvs-tag

cvs

is there a way to generate a list of of files which belongs to a specific cvs-tag with revision.

e.g projectname_a includes following files
– file_1 rev 1.1
– file 2 rev 1.40

Best Answer

The most simple solution is to do a checkout with this tag somewhere. Takes a bit of disk space, though. If that bothers you, try what you get with the -p option. If this output contains file names, then you just need to filter them out.

Related Topic