Disable Netbeans automatic svn ignore?

我的未来我决定 提交于 2019-12-30 09:32:08

问题


How do I stop Netbeans from automatically svn ignore-ing ".swp" files?

I use Netbeans as my main development environment, but I often use gvim at the same time for quick edits. gvim creates temporary files with the .swp extension, and Netbeans seems to be scanning my code folders and adding an svn ignore property for these files.

I can see how this would be useful to people, but I want to disable it - the .swp files don't show up as being unversioned anyway, so they're not a problem, but the directory modifications caused by the svn ignore's just creates a load of modification spam when I'm using the svn command line interface.

Any idea how I can disable this feature?


回答1:


From here:

Get NetBeans to stop adding VIM swap files to .cvsignore or svn:ignore

  • Open $HOME/.netbeans/6.1/config/Preferences/org/netbeans/core.properties
  • Remove everything in the IgnoredFiles property after the last pipe character (|) (i.e., |^\..*$) and append ^.svn$
  • Restart NetBeans

You can also find this setting under the Files tab in the Options


As mentioned by therefromhere in the comments:

  • In netbeans 6.7 this is in Tools->Options->Miscellaneous->Files
  • the relevant pattern to append in this case was ^.*\.swp$


来源:https://stackoverflow.com/questions/1074351/disable-netbeans-automatic-svn-ignore

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!