Is there a way to perform a full text search of a subversion repository, including all the history?
For example, I\'ve written a feature that I used somewhere, but t
I just ran into this problem and
svnadmin dump |grep -i
did the job for me. Returned the revision of the first occurrence and quoted the line I was looking for.