Hi, on my osx leopard i've just installed svn, version 1.6.2 (r37639). But some of my developer tool such as Zend Studio, etc are not compatible with the repository create by this subversion version. Are there some svnadmin options that I can use to make it works?
+1
A:
If you use file:// protocol, you cannot use an older client than the one you used while creating the repository. However, if you use apache/webDAV, or svnserve you should be able to access the newer repository.
svnserve is very easy to setup basically it is just:
svnserve -d -r </REPO/ROOT>
You can also install Subversion 1.5 and Subversion 1.6 on your machine. Then you just have to adapt your path via script so that you can user either 1.5 or 1.6
Peter Parker
2009-08-26 13:35:35
I hoped to use the file:// protocol because the repository is in the same machine. But it's ok i will try to use svnserve.Thanks
Luca Bernardi
2009-08-26 15:55:50