info-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Getting a List of all changed files since last Tag along with who ch


From: Todd Denniston
Subject: Re: Getting a List of all changed files since last Tag along with who changed them
Date: Mon, 19 Mar 2007 13:11:38 -0500
User-agent: Thunderbird 1.5.0.7 (X11/20060909)

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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]