SVN 1.7+ in Netbeans 7.0

前端 未结 3 380
挽巷
挽巷 2021-02-04 05:09

I have a project that uses totoiseSVN. Before upgrading it to 1.7 version all works fine, but when I upgrade tortoiseSVN to 1.7 version it gives me an error when I try to commit

相关标签:
3条回答
  • 2021-02-04 05:46

    Setting -J-DsvnClientAdapterFactory=commandline option and including svn executable in your PATH system variable is enough to solve this problem.

    You can set the option by doing this in a way described by tpae OR by adding this option to netbeans_default_options property in <netbeans_dir>\etc\netbeans.conf file.

    0 讨论(0)
  • 2021-02-04 05:47

    Netbeans uses the command line client. You still have an 1.6.x version of the command line client somewhere in your PATH env variable.

    0 讨论(0)
  • 2021-02-04 06:02

    Enable Command line switch in your application shortcut/execution path:

    -J-DsvnClientAdapterFactory=commandline
    

    Example

    “C:\Program Files\NetBeans 7.0.1\bin\netbeans.exe” -J-DsvnClientAdapterFactory=commandline
    
    0 讨论(0)
提交回复
热议问题