What kind of SVN command can I run that will get me a list of files changed since a certain date?
Right now I have it as
svn log <url> -r {2010-11-01}:{2011-05-04} > log.txt
That almost work, but it only shows the revisions and comments but not the files list.
-v
you will get a list of files embedded in each commit log entry. if youre just trying to assemble a cumulative list though this probably isnt what you want – Amandaamandi