I had to make a change to a subversion repository database. I created a dump, filtered out a revision and created a new database.

This new repository of course shares a lot of content with the working copies clients of the old repo already checked out, however, it is missing a revision inbetween.

The revision that was removed did not add any data, it only changed some files.

Is it possible to simply replace the old server database with the new one without causing havoc on existing clients working copies? Or do I have to have all clients check out a fresh copy of the new repo instead?

More generally, how do subversion clients deal with a change in structure on the server side? I'm primarily interested in TortoiseSVN.

link|improve this question

Why do you have server repositories and client repositories? Maybe you mean repository (always on server side) and working copy (always on client side)? The thing is there is no such thing as client repository. Or maybe you try to sync several repositories using svnsync? – altern Jan 20 at 15:13
@altern: Yes, I meant client working copy. Sorry for the confusion, I edited. – mafutrct Jan 20 at 15:27
feedback

2 Answers

We had an issue with a corrupt checkin once, which required me to remove it from the repo. I ran a few test checkins after the work was complete, so the latest revision number was at least the same (if not greater) than what the other developers had on their box. We didn't have any issues doing this.

link|improve this answer
feedback

As long as the revision numbers weren't changed in the dump, and the UUID was kept, it shouldn't make much difference. Subversion tracks the revision number of the working copy files and the UUID and URL of the repository. Even if the history was changed, it shouldn't affect the working copies.

HOWEVER, there's always a difference between theory and fact. Before doing a dump and load, I'll warn the developers in advance. I have them check in their code. Then, I do a dump and load, then tell the developers to do a clean checkout.

Just to be safe, do a clean checkout. You can do a svn status on the old working copies to find files that were changed but not committed and copy them off to your new clean checkout. The svn status doesn't ping the repository, so that's a safe operation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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