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.
|
|
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. |
|||||||||
|
|
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 ;-) |
|||
|
|
|
|
|||
|
|
The advantage is that you can do many searches locally, without loading the server and network connection. |
|||
|
|
|
I do like TRAC - this plugin might be helpful for your task: http://trac-hacks.org/wiki/RepoSearchPlugin |
|||
|
|
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. |
||||
|
|
|
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:
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! |
|||||
|
|
If you have a copy checked out, then you could use grep in any *nix distribution, or you can use its Windows counterpart. |
|||
|
|
|
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 |
|||||
|
|
|
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. |
|||||
|
|
theres krugle and koders but both are expensive. Both have ide plugins for eclipse. |
|||||
|
|
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). |
|||
|
|
|
// 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. |
|||
|
|
|
the following code will search for 'SEARCH TERM'
does this answer you Ken ? |
|||
|
|