Ignoring Eclipse project files in SVN project

Solution 1:

Preferences > Team > Ignored Resources

Solution 2:

Can you use global-ignores? If yes, customize it in your config file:

  • On Windows: C:\Documents and Settings\%USERID%\Application Data\Subversion\config
  • On Linux: ~/.subversion/config

Solution 3:

If you want to ignore folders in the eclipse ignored resources, the pattern is */.settings/* for the .settings folder for example

Solution 4:

Can you just uncheck the box for "Show unversioned files" in the commit window?

Solution 5:

If you right click on the folder in eclipse, and select Show Properties... you can add the svn:ignore right there and have it cascade down to every folder if you choose.

You could the following as a template:

svn:ignore

.settings
.project
.classpath
target