I\'d like to grep all revisions of a file for a string. e.g. to find when a function was added or removed.
grep
Is there a \"simple\" way to do this? (i.e.
With a Subversion 1.6 server and its mod_dav_svn you can specify the revision number via a GET parameter:
mod_dav_svn
http://host/repos/path?r=20
So you can easily wget your files in all revisions and then diff them.
wget
diff
Source: SVN 1.6 changelog