I want to find a specific string that I know existed in the past in one of my projects that is under CVS version control. However, I don't remember which file or which revision it existed in. Is there a way to do this.
Just realized I could go into the cvs repository and do a
grep "my string" * -r
which is a hack but works.
Kind of a pain though, anyone know an easier way?