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

后端 未结 9 2483
失恋的感觉
失恋的感觉 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:22

    I had this same issue on OSX. I have been able to upgrade the SVN by following the step by step guide here:

    URL: http://andowebsit.es/blog/noteslog.com/post/how-to-upgrade-subversion-on-osx/

    First check which svn version you have:

    $ svn --version
      svn, version 1.7.17 (r1591372)
      compiled Aug  7 2014, 17:03:25
      ...
    

    Seems like its old version, so update it.

    $ brew update
    $ brew install subversion
    

    This will take some seconds to install. Now check how many svn you have. You will see the another entry belew.

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

    Edit the ~/.bash_profile with

    export PATH="/usr/local/bin:$PATH"
    

    And then

    $ source ~/.bash_profile
    
    $ svn --version
    svn, version 1.8.10 (r1615264)
    compiled Aug 25 2014, 10:57:58 on x86_64-apple-darwin13.3.0
    ...
    

    Now you will see the SVN verison is upgraded from 1.7 to 1.8.

提交回复
热议问题