views:

29

answers:

1

I'm using eclipse 3.5.2 and cannot seem to use "filter resources" to filter out .git folders in any of my projects for any of my perspectives: javascript, ruby, and php. I've tried adding the filter to plugin.xml as suggested on this blog but it is for eclipse 3.4 and doesn't seem to work. Any suggestions?

+2  A: 

For a given project (at least Java), you should be able through its properties, to edit its Source Path, and add an exclusion rule like:

**/.git/

alt text

VonC
Thanks, I actually tried that as well except I did ".git" instead of "**/.git/"
jpfuentes2