Hi
Is it possible to get a list of all files modified/added/deleted by a particular user?
The goal is to get an idea of what a user did for the day (or date range).
Hi
Is it possible to get a list of all files modified/added/deleted by a particular user?
The goal is to get an idea of what a user did for the day (or date range).
Here's an example, using the svn log command and linux sed command, with your username, 'blankman':
svn log | sed -n '/blankman/,/-----$/ p'
If you're looking to obtain this information with continual reports, using a project like StatSVN, which Patrick mentioned, is very useful. If you're using Maven, there is a StatSCM plugin which will generate this information on your project site.
Yes. We use StatSVN for our subversion reports, and one of the reports it does is commits by developer.
TortiseSVN also lets you look at log messages by date for authors.