Question

Im trying to upgrade Subversion from 1.6 to 1.7 and having issues.

Im using Linux Redhat 5, Im installing SVN server only and not using Apache. I'm then accessing subversion via Eclipse Kepler. I have used the rpm from CollbaNet to upgrade my version of SVN and all appears to have worked

When I run svn --version, I get

svn, version 1.7.16 (r1569520) compiled Apr 9 2014, 14:32:02

I have then checked out a few test branches from my repository but Im not seeing any change or benefit. The working copy still has an .svn folder in every directory and still takes ages to check out or commit changes .

Is there anything Im missing from the install, I followed the instructions from CollabNet to the letter. Do I need to do anything to eclipse to make it recognise 1.7?

I should add this is on a test server running parallel to our live version of svn. Eclipse has repositories from both servers.

Apologies if you need more information, if you do let me know and I will provide as needed

thanks

Était-ce utile?

La solution

Generally speaking, the server-side upgrade does not affect your client. The client is still based on Subversion 1.6. You have to upgrade the client to benefit from the client-side improvements.

In other words, upgrade the svn plug-in that you use in Eclipse (Subclipse / Subversive or whatever you use in the IDE) to the latest version.

Autres conseils

 sudo yum update
 sudo yum groupinstall "Development tools"
 sudo yum groupinstall "Additional Development"
 wget https://archive.apache.org/dist/subversion/subversion-1.7.8.tar.gz
 tar zxvf subversion-1.7.8.tar.gz
 cd subversion-1.7.8
 ./get-deps.sh
 ./configure
 make
 make check
 sudo make install

On my system this seems to put the binary in /usr/local/bin/svn whereas the 1.6 binary is in /usr/bin/svn so you might need set up an alias.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top