How to find the deleted lines of code between two date range in SVN. I am using Tortoise SVN.
You can use the diff command to do so and grep in the output the "-" sign which is indicating a line has been deleted.
svn diff -rRange URL1 URL2
You want to "diff" between two files.
To find the dates, you can look at the revision logs.
精彩评论