How do you get a list of changes from a Subversion repository by date range?

Very first hit by google for “svn log date range”: http://svn.haxx.se/users/archive-2006-08/0737.shtml

So svn log <url> -r
{2008-09-19}:{2008-09-26}
will get
all changes for the past week,
including today.

And if you want to generate reports for a repo, there’s a solution: Statsvn.

HTH

Leave a Comment