svn: E155021: This client is too old to work with the working copy at xxx (format '31')

后端 未结 9 2470
失恋的感觉
失恋的感觉 2021-02-20 03:29

I am trying to import some gradle projects in my Spring Tool Suite . I have installed Subclipse 1.10.5 in my STS and svn client installed in my machine is 1.8.8 . I have tried d

9条回答
  •  挽巷
    挽巷 (楼主)
    2021-02-20 04:15

    Got this error ON MAC OS X but you believe you have available the right version?

    First look at how many svn

    $ which -a svn
    /usr/local/bin/svn
    /usr/bin/svn
    /usr/local/bin/svn
    

    Look at the output for each of the output using the --version flag. You might notice that the default which output is not the same as the default command output:

    $ command -v svn
    /usr/bin/svn
    $ which svn
    /usr/local/bin/svn
    

    You might be tempted to update some symlinks or your PATH variable but before doing so try from a new console, it might be just that you are hitting a console open before you installed the latest version. I would even try restarting before attempting to change PATH or symlinks.

提交回复
热议问题