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: Russ Sherk
Subject: Re: how to find out all files committed by a specific user
Date: Wed, 2 Nov 2005 13:36:01 -0500



On 11/2/05, Todd Denniston <address@hidden> wrote:
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.

 

Alternately, without use of cvs2cl, you can use:
cvs log -d"2005-06-23<2005-06-25" -wusername

-w selects revisions for a given user or users

Regards,

--Russ
 

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


_______________________________________________
Info-cvs mailing list
address@hidden
http://lists.nongnu.org/mailman/listinfo/info-cvs


reply via email to

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