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
in Apache Subversion 1.8 supports a new --search option. So you can search Subversion repository history log messages without using 3'rd party tools and scripts.
svn log --search
searches in author, date, log message text and list of changed paths.
See SVNBook | svn log command-line reference.