Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I make Eclipse file search not include svn directories?

Tags:

eclipse

svn

When I do a file search on eclipse it includes the .svn directories by default. I tried excluding them from the build path but they still appear on file search results.

like image 694
ryantm Avatar asked Sep 03 '08 15:09

ryantm


2 Answers

Spaceman is right. With Helios, choose Project -> Properties -> Resource -> Resource Filters and then add an exclude filter for type "Folder" with name .svn.

like image 139
Brad Whitaker Avatar answered Oct 18 '22 19:10

Brad Whitaker


If you install the subclipse plugin then it automatically excludes the .svn directories (plus provides some other cool stuff in the IDE).

http://subclipse.tigris.org/

If it does not work, simply restart Eclipse (sometimes it's needed on a fresh checkout)

like image 8
Mark Ingram Avatar answered Oct 18 '22 20:10

Mark Ingram