Reputation: 25370
ecilpse is giving warnings because it doesn't understand some files that are not related to the project such as the .DS_Store files:
Upvotes: 2
Views: 2842
Reputation: 11
The answer above didn't help me. I use a solution from Egit: Set gitignore to ignore all eclipse project files
Add in project .gitignore file the code
# Mac
.DS_Store
Upvotes: 0
Reputation: 25370
These files can be ignored on a per-project basis...
First, right-click the project and open the properties and go to Resource Filters:
Then simply add an exclusion rule like this:
You can also use this for hidden svn/git files and folders that may be causing you problems.
Upvotes: 7