We as a development team were always happy with subversion and eclipse, we checked in everything and everything was fine. Until we had a new hire who's using anything but eclipse (RAD ). his RAD checkins are currently polluting the svn repo withholding our eclipse checkouts to finish building. One solution may be to force eclipse in the new hirer's throat, another more subtle and probably more suitable approach is to make our project ide agnostic. Instead of removing the files by trial and error I hope to learn a quick and reliable solution.
- I already learned that i should remove files and add them to the svn global ignore. I'm wondering is there a way to make this project wide instead of having everybody fixing their own svn config? Something to add to your root .svn directory?
- I'm also looking for a list or even script to remove the eclipse files and directories from the svn repo (.project .settings .classpath?? .externalToolBuilders .springBeans) without running the risk of completely ruining the workspace.
- I'm also intested in finding the quickest way of restoring the workspace, as we're using maven for software project management I can do mvn eclipse:eclipse in the root of workspace but how do I find what the proper WST settings are, and what is the quickest way or restoring your path settings in eclipse ?
I thought that many people would have been faced with the same use case, and consequently had the same questions but I haven't found anything on Google yet. Hopefully somebody here can point me in the right direction.