Feb 15, 2007

NetBeans annoyance

From google it appears that it's not too common to enable .NET hack for subversion (.svn -> _svn) and work with NetBeans 5.5 . If you try you'll see that your java project suddenly has a bunch of _svn packages which is annoying.
So you might think that installing subversion module for NetBeans will solve this. It won't.

Hip-hip!
Open Tools->Options->Advanced Options->IDE Configuration->System->System Settings.
Take a rest.
You just found Ignored Files property!
Here change:
^(CVS|SCCS|vssver\.scc|#.*#|%.*%|\.(cvsignore|svn|DS_Store))$|^\.[#_]|~$
to
^(CVS|SCCS|_svn|vssver\.scc|#.*#|%.*%|\.(cvsignore|svn|DS_Store))$|^\.[#_]|~$

1 comment:

Anonymous said...

Thank you for this tip! The project looks much better without _svn stuff.