Chinjoo
Chinjoo

Reputation: 2792

SVN - Deleted lines of code

How to find the deleted lines of code between two date range in SVN. I am using Tortoise SVN.

Upvotes: 2

Views: 537

Answers (2)

William Niu
William Niu

Reputation: 15853

You want to "diff" between two files.

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

Upvotes: 0

khmarbaise
khmarbaise

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

Related Questions