Disable Netbeans automatic svn ignore?

前端 未结 1 928
一整个雨季
一整个雨季 2021-01-13 06:59

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

I use Netbeans as my main development environment, but I often use

相关标签:
1条回答
  • 2021-01-13 07:37

    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$
    0 讨论(0)
提交回复
热议问题