Markus Wiedmer wrote:
Hi all,

I'm looking to get CVS to get me a list of all changed Files in a given Project 
since the last Tag (or any given Tag for that matter) as well as who changed 
it. Annotate just seems to deliver way too much information (I don't want to 
know which lines changed, just who changed the file)

Is there an easy way to get this information?

Thanks

Markus


cvs2cl.pl [or perhaps cvs2cl.py on windows] will reduce the log output for you.
between tags can be done as:
cvs2cl.pl --delta DEV_VER_1_5:DEV_VER_1_6

to do since a tag
cvs2cl.pl -l "-rDEV_VER_1_6:"
almost works.

and you may want to use the xml output format so you can pull just what you 
want:
cvs2cl.pl --xml -l"-rDEV_VER_1_6:"
grep -e "<author>" -e "<name>" ChangeLog

http://www.red-bean.com/cvs2cl/

--
Todd Denniston
Crane Division, Naval Surface Warfare Center (NSWC Crane)
Harnessing the Power of Technology for the Warfighter


_______________________________________________
info-cvs mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/info-cvs

Reply via email to