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.
|
6
|
|||
|
|
|
I do like TRAC - this plugin might be helpful for your task: http://trac-hacks.org/wiki/RepoSearchPlugin |
||
|
|
|
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! |
||
|
|
|
|
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 have a copy checked out, then you could use grep in any *nix distribution, or you can use its Windows counterpart. |
||
|
|
|
|
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). |
||
|
|
|
|
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. |
||
|
|
