I have never added IDE configuration files to the repository for several reasons:
- other colleagues may want to use them;
- other colleagues may want to use other IDEs (for example, Eclipse) and see that these files (or even exclude them from the scan) may annoy them;
- some of these files are usually not associated with one project, others are automatically generated, so there is no need to store them in the source code of each project.
To exclude them, our first solution was .svnignore , but it was logically incorrect to modify some common content for the specific needs of one user, so we decided to be more strict:
in my ~/.subversion/config I have:
[miscellany] global-ignores = nbactions.xml nbproject
Hope this helps,
Marcello
marcello
source share