Search in SVN Eclipse plugin
Asked Answered
H

1

5

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

Harewood answered 19/1, 2010 at 16:42 Comment(2)
That feature would be great. Please update the thread if you find a usable solutionOrville
Checkout the whole code base and use Eclipse's Open Resource function?Deafanddumb
P
7

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

Payee answered 19/1, 2010 at 21:8 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.