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
svn log -v [repository] > somefile.log
for diff you can use the --diff option
svn log -v --diff [repository] > somefile.log
then use vim or nano or whatever you like using, and do a search for what you're looking for. You'll find it pretty quickly.
It's not a fancy script or anything automated. But it works.