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.
As far as I know that's not easily possible. I'd write a small script that retrieves each changeset for the file in question and then grep through the diff for the string. Then it's as simple as printing the current revision number :)