tags:

views:

34

answers:

2

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
For modification of line, svn will make it as one deleted line and one added line. This will not give actual deleted lines.
Chinjoo
A: 

You want to "diff" between two files.

To find the dates, you can look at the revision logs.

William