Is there a way to downgrade a subversion working copy from version 1.7 to version 1.6x?

Version 1.7 uses a single .svn root folder and sqlite for metadata so the conversion python script from tigris.org does not work.

Do you know of a solution that does not involve making a clean checkout under v1.6 and copying over the modified files?

link|improve this question

Is 1.7 yet released? Which client is supporting it? – eckes Feb 1 '11 at 11:08
For windows beta versions are available from the TortoiseSVN nightly builds site at nightlybuilds.tortoisesvn.net/latest – ccpizza Feb 1 '11 at 11:13
feedback

4 Answers

up vote 6 down vote accepted

There is a script to do working copy downgrades.

However, this does not support downgrading from the 1.7 format to the 1.6 format, nor will it ever support this in the future. The comments in the script tell us why this is impossible:

  # Downgrading from format 11 (1.7-dev) to format 10 is not possible,
  # because 11 does not use has-props and cachable-props (but 10 does).
  # Naively downgrading in that situation causes properties to disappear
  # from the wc.
link|improve this answer
Sorry for -1 vote. But how can this be a valid answer? – fishbone Dec 13 '11 at 23:24
1  
@fishbone: I assume you mean that one of the other answers should be voted above this one. Note that those answers will not actually preserve the state of your working copy. To give one example, if you had done a "svn mv foo bar" then after the downgrade you'd see that foo is "missing" and bar is "unversioned". Uncommitted SVN property modifications would be lost entirely. So IMO "it can't be done" is still a valid answer. – Wim Coenen Dec 14 '11 at 9:11
I'm sorry, my fault, I have to remove the downvote. It sounded to me like "How can I downgrade 1.7 to 1.6" - "I know a script which exactly can't do that" :D . I misunderstood the script's comments, which are the actual point of your answer. Edit: I can't remove the vote until this answer is edited :( – fishbone Dec 14 '11 at 22:34
feedback

I found the best way to delete the .svn folder from the 1.7 working copy then checkout the 1.6 on top of it. It worked for me, it might work for you as well. (with using tortoiseSvn 1.6.x client)

link|improve this answer
This worked pretty well for me. I was able to keep the changes I had made locally. Some extra files turned up modified but I was able to revert them. – Speck Dec 8 '11 at 20:39
feedback

My dirty solution was to create a clean checkout using v1.6 and then copy only the .svn folders to the existing working copy using a little bash script:

  #!/usr/bin/env bash
  target=/projects/working-copy-dir

  svn_dirs=`find . -type d -iname .svn`

  for svn_dir in $svn_dirs; do
      tosvn_dir=$target${svn_dir/\.\//}  # strip the extra './' path component
      cp -r $svn_dir $tosvn_dir
  done

This assumes the script is run from the clean checkout dir. Target is the modified working copy. The top-level v1.7 .svn dir should be removed/renamed before running the script.

ps. I am not going to mark this as an answer for the time being, because the solution above is a workaround and does not actually convert the project from 1.7 to 1.6. So the question remains open.

link|improve this answer
feedback

(assuming the files on server are correct) Best way i found so far:

1) close your IDE 2) delete local files 3) remove svn 1.7 4) install svn 1.6 5) checkout files

link|improve this answer
I would do this also but the question was about how to avoid this. – Johan Lundberg Feb 29 at 7:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.