info-cvs
[Top][All Lists]
Advanced

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

Re: how to find out all files committed by a specific user


From: Todd Denniston
Subject: Re: how to find out all files committed by a specific user
Date: Wed, 02 Nov 2005 12:57:04 -0500

address@hidden wrote:
> 
> Hi,
> 
> I need to find all the files committed by a specific user on a specific
> date, but I have not been able to figure out how to do this. Can anyone
> lend a hand? thanks!
On a unix system I would do approximately the following in a current
sandbox:

# generate a consolidated change log with cvs2cl
# you can get this script from red-bean [1].
cvs2cl.pl 
# find checkins that the interesting user did.
# visual search of times for interesting time period.
grep -A5 username ChangeLog|less

or note that with a known date you can use -l in cvs2cl to pass options to
the log portion of cvs, like:
cvs2cl -l "-d '2005-06-23<2005-06-25' " 
to see what happend on 2005-06-24. 
Dates for log are specified in ISO 8601 format.

[1] http://www.red-bean.com/cvs2cl/
  Note there is a cvs2cl.py included with CVSNT that does IIRC similar to
the red-bean perl version but seems to work under windows.
-- 
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]