Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
4  
Do you need to search through the history of the repo? Or just the head? – swilliams Oct 31 '08 at 17:32
3  
There is a free version of FishEye - www.atlassian.com/starter – David Freitas Feb 23 '11 at 13:44

14 Answers

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.

share|improve this answer
8  
+1 for svnquery – Seth Reno Feb 13 '10 at 5:19
1  
I've just downloaded this myself - version 1.2.2.0 is currently available. (i.e. out of Beta) – Brett Rigby Oct 3 '12 at 8:36

If you're searching only for the filename, I use:

svn list -R file:///subversion/repository | grep filename

(windows: svn list -R file:///subversion/repository | findstr filename)

..otherwise checkout and do filesystem search: egrep -r code . Windows: Install cygwin, or upgrade to Linux ;-)

share|improve this answer

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

share|improve this answer
OpenGrok has moved to opengrok.github.io/OpenGrok now. – alanc May 14 at 2:02
  1. Create git-svn mirror of that repository.
  2. Search for added or removed strings inside git: git log -S'my line of code' or the same in gitk

The advantage is that you can do many searches locally, without loading the server and network connection.

share|improve this answer

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

share|improve this answer
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

Just a note, FishEye (and a lot of other Atlassian products) now have Free Starter Editions, which in the case of FishEye gives you 5 repositories and access for up to 10 committers.

www.atlassian.com/starter

share|improve this answer

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!

share|improve this answer
1  
Just use git-svn. Git has built-in search for code in commit history. But you will need to download the whole commit history to use git-svn. – Vi. Jun 17 '10 at 18:45

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

share|improve this answer

I started using this tool

http://www.supose.org/wiki/supose

It works fine just lacking a visual UI, but is fast and somewhat maintained

share|improve this answer
Nowadays (August 2012) the project seems to have stalled... – dhekir Aug 24 '12 at 19:35
In December 2012 they released something new (0.7.1) – sendmoreinfo Jan 18 at 21:25

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.

share|improve this answer
1  
This is probably not a good idea, as the overhead involved would be huge. Also, SVN-servers aren't usually regular web-pages, but a svn repo exposed through webdav. – torkildr Oct 29 '10 at 13:58

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

share|improve this answer
1  
What about Krugle Basic? – Bård Feb 10 '10 at 13:04

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).

share|improve this answer

// Edit: Tool was already mentioned in another answer, so give all credits to Kuryaki.

Just found SupoSE which is a java based command line tool which scans a repository to create an index and afterwards is able to answer certain kinds of queries. We're still evaluating the tool but it looks promising. It's worth to mention that it makes a full index of all revisions including source code files and common office formats.

share|improve this answer

the following code will search for 'SEARCH TERM'

svn log -l 50 FILE | perl -lwne 'if (m/^r(\d+)/) {print $1;}' | while read r; do svn diff -r $(( r - 1  )):$r FILE | grep -qi 'SEARCH TERM' && echo "$r" ; done

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

does this answer you Ken ?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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