How to find the deleted lines of code between two date range in SVN. I am using Tortoise SVN.
+1
A:
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
khmarbaise
2010-09-02 12:33:55
For modification of line, svn will make it as one deleted line and one added line. This will not give actual deleted lines.
Chinjoo
2010-09-03 04:52:51
A:
You want to "diff" between two files.
To find the dates, you can look at the revision logs.
William
2010-09-02 12:38:29