Retrieve modified files from svn command line between two dates

I need to get a list of modified files between two dates in SVN.

I used the command below.

svn diff -r{2011-10-12}:{2011-10-28} --summarize https://svn.blah.com/../ > output.txt 

for some reason, files modified on 10/28/2011 are not populated in the output text file.

Could you give the exact command to retrieve a list of files between two dates (including dates).

+7
source share
1 answer

This is normal when you give the date {2011-10-28} , it means "at midnight" ... thus, specify another day for the end of the range.

+11
source

All Articles