vote up 20 vote down star
6

Is there any good software that will allow me to search through my SVN respository for code snippets? I found 'FishEye' but the cost is 1,200 and well outside my budget.

flag
Do you need to search through the history of the repo? Or just the head? – swilliams Oct 31 '08 at 17:32

8 Answers

vote up 3 vote down

We use http://opensolaris.org/os/project/opengrok/

link|flag
vote up 2 vote down

I do like TRAC - this plugin might be helpful for your task: http://trac-hacks.org/wiki/RepoSearchPlugin

link|flag
this looks somewhat promising... but not too terribly easy to install, can't confirm if it works with Trac+VisualSVN Server. – Kit Roed Oct 31 '08 at 19:38
vote up 2 vote down

Painfully slow (and crudely implemented) but a combination of svn log and svn cat works if you are searching the history of single files or small repositories:

svn log filetosearch |
    grep '^r' |
    cut -f1 -d' ' |
    xargs -i bash -c "echo '{}'; svn cat filetosearch -'{}'"

will output each revision number where file changed and the file. You could always cat each revision into a different file and then grep for changes.

PS. Massive upvotes to anyone that shows me how to do this properly!

link|flag
vote up 2 vote down

There is http://sourceforge.net/projects/svn-search/ and also a Windows application directly from the SVN home at http://svnquery.tigris.org/. The latter is very beta, but working.

link|flag
vote up 1 vote down

If you have a copy checked out, then you could use grep in any *nix distribution, or you can use its Windows counterpart.

link|flag
vote up 1 vote down

theres krugle and koders but both are expensive. Both have ide plugins for eclipse.

link|flag
vote up 1 vote down

If you're really desperate, do a dump of the repo (look at "svnadmin dump") and then grep through it. It's not pretty, but you can look around the search results to find the metadata that indicates the file and revision, then check it out for a better look.

Not a good solution, to be sure, but it is free :) SVN provides no feature for searching past checkins (or even past log files, AFAIK).

link|flag
vote up 0 vote down

A lot of SVN repos are "simply" HTTP sites, so you might consider looking at some off the shelf "web crawling" search app that you can point at the SVN root and it will give you basic functionality. Updating it will probably be a bit of a trick, perhaps some SVN check in hackery can tickle the index to discard or reindex changes as you go.

Just thinking out loud.

link|flag

Your Answer

Get an OpenID
or

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