You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by pe...@bigfoot.com on 2009/03/12 01:33:22 UTC

Changes by user and date

Is there any easy way to find any changes make by a specific user over a 
certain date range?

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=1310315

To unsubscribe from this discussion, e-mail: [users-unsubscribe@subversion.tigris.org].

Re: Changes by user and date

Posted by Andy Levy <an...@gmail.com>.
On Wed, Mar 11, 2009 at 21:33,  <pe...@bigfoot.com> wrote:
> Is there any easy way to find any changes make by a specific user over a
> certain date range?

Over a date range is easy - date ranges can be passed as the parameter for -r

But Subversion doesn't store revisions by user - rather, user is a
property of the revision. So you'll need to parse the svn log output
to filter out a particular user. This is pretty easy if you use the
--xml option for svn log, then apply an XSLT that only outputs entries
for that user.

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=1312350

To unsubscribe from this discussion, e-mail: [users-unsubscribe@subversion.tigris.org].