> -----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