Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to exclude .svn directories from search in Eclipse? [duplicate]

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

I would like to perform a search but exclude all .svn directories from the search. How could I do that?

By the way, I have the Subversive plugin installed in Eclipse, if it's needed.

like image 966
Richard Knop Avatar asked Oct 21 '10 08:10

Richard Knop


1 Answers

  1. Open project's Properties.
  2. Resource/Resource Filters
  3. Click Add... button.
  4. Configure filter:
    • Filter type: Exclude all
    • Applies to: Folders
    • x All children (recursive)
    • Leave selected positions in combobox (Name, matches) and type .svn
    • Click OK

It works OK for me.

like image 61
prostynick Avatar answered Sep 29 '22 12:09

prostynick