Saturday, February 19, 2011

List all files changed by a particular user in subversion

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

From stackoverflow
  • 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.

    Ken : lovely... that's going straight into my .alias
  • 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.

0 comments:

Post a Comment