Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I find the revision that changed a line in my code using TortoiseSvn?

I have one line of code which seems commented. Basically the thing I want to find is the revision that changed this line in the code.

So, is it possible to see changes in code related to a specific keyword in TortoiseSvn Log?

like image 820
pencilCake Avatar asked Oct 29 '09 11:10

pencilCake


1 Answers

What you want to do is do a Blame on that source file and it will show you the revisions that changed each of the lines of code.

I'm not aware of any command that would be able to give you all revisions for a given line of code...what you can do is do a show log on a single file and then look at each of the revisions that took place over time.

like image 94
mezoid Avatar answered Oct 09 '22 08:10

mezoid