There was an svn project in svn repo http://svn/repoA/path1/ . Call this original repo.
This was copied to http://svn/repoA/path2 . Call this new repo.
A local working copy on one of our machines, checked out from original repo, was updated after this copy occurred.
Then original repo was deleted.
We now wish to reintegrate the working copy into new repo.
svn switch is suitable for this. Running inside the project base directory:
svn switch http://svn/repoA/path2
However, switch complains because the project has a revision number which does not exist in new repo.
In svn 1.6 I would have changed the revision number in .svn/entries recursively under the project base dir, where it is stored as plaintext.
In svn 1.7 such information seems to be stored opaquely (encoded in some way) into .svn/wc.db or other new files.
My question is: how can I force the working copy to think it's an existing revision on the copied revision history so that I can switch it to the cloned repo folder and thereafter update it?