[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

RE: User History Audit

From: Reedick, Andrew <jr9445_at_ATT.COM>
Date: 2007-12-31 17:12:56 CET

> -----Original Message-----
> From: Java_James [mailto:james-junk@rogers.com]
> Sent: Monday, December 31, 2007 10:47 AM
> To: users@subversion.tigris.org
> Subject: User History Audit
>
>
> Hi All,
>
> I was wondering if there is a way to track user activity in
subversion.
> What I am looking for is all of the commits a user made over a certain
> period of time.
>
> I'm relatively new to svn, and can't seem to find anything in the docs
> on
> how to do this. Any help is appreciated.
>

Win:
        svn log svn://server/repos | findstr /i "jdoe"
        svn log svn://server/repos | perl -ne "@a=split(/ \| /, $_, 4);
print if $a[1] eq 'jdoe'"

Unix:
        svn log svn://server/repos | grep -i jdoe
        svn log svn://server/repos | perl -ne '@a=split(/ \| /, $_, 4);
print if $a[1] eq "jdoe"'

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Mon Dec 31 17:13:26 2007

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.