Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Search in SVN Eclipse plugin

I am using Subversive plugin for Eclipse to connect to SVN Code repository. Our code base is so huge, that am finding it difficult to search for files. I am not able to find files using Ctrl+F key also. Is there anyway I can search for specific files in this plugin. thanks in advance,

Regards, PK

like image 485
Anoop Avatar asked Jan 19 '10 16:01

Anoop


People also ask

What is SVN plugin for Eclipse?

Eclipse is an open-source and free, java-based development platform. It is well known for its excellent plug-ins that allow developers to develop and test code written in different programming languages. Eclipse IDE support built-in integration for Subversion.

How do I view SVN history in Eclipse?

This view is accessed via the Team > Show in Resource History context menu. Alternatively, to activate this view, choose Window > Open View > Other... and select SVN ... SVN Resource History View.


1 Answers

NO there is no search function in subversive (and not in svn either).

You can do a small workaround:

svn ls -R [YOUR_PROJECT_REPO_URL] > all_files.txt

will list all files in your repo into the file all_files.txt (Caution: This will take some time..maybe start it of friday and let it run through the weekend..). After retreiving the file you can just search via your favorite texteditor(or eclipse).

Sure this is just a workaround, and you can not update this textfile in shorter time, but if you do not rely on most current versions it is a workaround

like image 137
Peter Parker Avatar answered Oct 13 '22 20:10

Peter Parker