Reputation: 2792
How to find the deleted lines of code between two date range in SVN. I am using Tortoise SVN.
Upvotes: 2
Views: 537
Reputation: 15853
You want to "diff" between two files.
To find the dates, you can look at the revision logs.
Upvotes: 0
Reputation: 97359
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
Upvotes: 2