Article Source: http://blog.csdn.net/chaijunkun/article/details/34805385, reproduced please specify.
Since it will comb about Bowen, it will make the corresponding content unchanged. Text
The combination of Eclipse and MAVEN plug-ins provides a convenient way for us to build a high-speed development environment, but maven-compiled class files, configuration files, and packaged files do not actually need to be versioned, and each person in the team may have a different development environment. Syncing files such as. settings folders and. Project to SVN can even cause conflicts and inconvenience. So it's best to ignore them and keep a clean SVN environment.
First open the Eclipse menu in Window->preferences
Select Team->ignored Resources in the left-hand list. Then right-click on the Add Pattern ...
Add the following pattern one by one:
. settings
. Project
. classpath
. class
Target
. Ds_store
Among them. Ds_store is unique to the MAC system, and the storage index file is created on its own initiative in the folder itself.
Once added, click Apply. Ok. The set to complete. When a new project is submitted again, it does not synchronize these annoying additional information.
Quote from part: http://www.myexception.cn/cvs-svn/472249.html
Eclipse in Maven project delivery SVN ignore intro