Has anybody already managed to downgrade from Subversion 1.8 to Subversion 1.7? The provided script at http://svn.apache.org/repos/asf/subversion/trunk/tools/client-side/change-
Since both Subversion 1.7 and 1.8 have a single .svn
folder in the root directory (unlike 1.6
and lower) you can use the following simplified procedure:
Install subversion 1.7 for your OS. If you are on osx and use homebrew
, you can do it by running the following commands in terminal:
brew tap homebrew/versions
brew install subversion17
Now, assuming you are in the root of your working copy:
Rename the .svn
folder in your working copy (just in case you'll need to restore later):
mv .svn .svn18
Do a new checkout in a temporary folder using subversion 1.7:
svn co http://myrepo.com/ /tmp/v17
Copy only the .svn
folder created by subversion 1.7 to your working copy:
cp /tmp/v17/.svn .