vote up 10 vote down star
3

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 then it wasn't needed, so I svn rm'd the files, but now I need to find it again to use it for something else. The svn log probably says something like "removed unused stuff", and there's loads of checkins like that.

flag

58% accept rate

6 Answers

vote up 2 vote down

If you are running Windows have a look at SvnQuery. It maintains a full text index of local or remote repositories. Every document ever committed to a repository gets indexed. You can do google-like queries from a simple web interface.

link|flag
vote up 2 vote down

I was looking for the same thing and found this:

http://svn-search.sourceforge.net/

link|flag
vote up 2 vote down

I usually do what Jack M says (use svn log --verbose) but I pipe to grep instead of less.

link|flag
1  
That's not full text searching, it's searching the logs and filenames. – rjmunro Sep 7 '08 at 14:07
That is what I usually end up doing, but I've found that with less you can actually see the revision, date, etc instead of just the line in the comment. That is usually what I'm looking for anyway. – Jack M. Mar 23 at 18:10
vote up 2 vote down

The best way that I've found to do this is with less:

svn log --verbose | less

Once less comes up with output, you can hit / to search, like VIM.

Edit:

According to the author, he wants to search more than just the messages and the file names. In which case you will be required to ghetto-hack it together with something like:

svn diff -r0:HEAD | less

You can also substitute grep or something else to do the searching for you. If you want to use this on a sub-directory of the repository, you will need to use svn log to discern the first revision in which that directory existed, and use that revision instead of 0.

link|flag
1  
That's not full text searching, it's searching the logs and filenames. – rjmunro Sep 7 '08 at 14:09
If that is the case, then you need to use more expressive commit logs. If you want to grep the difference between revisions, that is whole other ball of wax. And I personally do not know a way to do that. – Jack M. Mar 23 at 18:11
vote up 2 vote down

I have been looking for something similar. The best I have come up with is OpenGrok. I have not tried to implement it yet, but sounds promising.

link|flag
I've been using OpenGrok for several months, it rocks. – Mauricio Scheffer Sep 29 '08 at 16:16
vote up 1 vote down

I don't have any experience with it, but SupoSE (open source, written in Java) is a tool designed to do exactly this.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.