Is it possible to see the history of changes to a particular line of code in a Subversion repository?
I\'d like, for instance, to be able to see when a particular st
This can be done in two stages:
svn blame /path/to/your/file > blame.tmp
grep "your_line_of_text" blame.tmp
You can delete blame.tmp file afterwards if you don't need it.
In principle, a simple script can be written in any scripting language that does roughly the same.