vote up 2 vote down star

So, my server administrator rolled back the subversion server from a backup. My working copy is at revision 1534, but the server is now at 1525, which yields some problems:

$ svn up
svn: Revision 1534 not found

Of course, there is always the option to do a clean checkout, but is there an easier way to get my local working copy in sync with the server?

flag
Were your modifications committed by the way? If not, you might have some problems and have to revert first (make sure to make a copy of the modified files first!). I'm not 100% sure though. – RedGlyph Nov 7 at 15:42
They were committed, but is now lost on the server because of the rollback. I have the changes on my disk, and also an extra copy, ready to apply the changes once more. – rlovtang Nov 7 at 15:46
Well, since nothing seems to work you will probably have to checkout everything again :/ Before, if you haven't already, you could still do a last check to see if everything is actually on the server up to revision 1525 (svn log -r HEAD <URL>) as you expect it to be... – RedGlyph Nov 7 at 16:22
Yes, everything up to 1525 is on the server, but missing 1526 to 1534 because the backup was at revision 1525. – rlovtang Nov 7 at 22:44

4 Answers

vote up 2 vote down check

You have to check out again.

Your working copy is dead.

Your admins should really try to sync their back up on each commit or storing the commits as dumps via hook script

link|flag
The sad thing is that this was actually a planned downtime, an upgrade that didn't succeed. I didn't get a notice, and they kept the server alive for 2 more hours after taking the backup.. :( – rlovtang Nov 7 at 22:37
maybe your admins should learn some svnbasics.. point them to subtrain.tigris.org – Peter Parker Nov 7 at 23:40
vote up 1 vote down
svn up -r HEAD

or specifying another specific revision should work.

link|flag
Sorry, already tried that, same error mesage – rlovtang Nov 7 at 15:18
Have you tried with the specific revision number? svn up -r 1525? – RedGlyph Nov 7 at 15:38
Yes, same error – rlovtang Nov 7 at 15:41
1  
This cannot work as svn up (on server) will always try to diff before pulling the update, however there is no such a revision. – Peter Parker Nov 7 at 21:03
vote up 0 vote down

I can't see any solution other than making a new checkout, and manually merging your uncommitted changes into your new working copy. Basically, your working copy comes from a alternate reality -- one where the server upgrade actually worked -- and I don't think Subversion has any provisions fixing this.

link|flag
vote up 0 vote down

The same thing happened to us a few weeks ago. I renamed my trunk folder, checked out a clean trunk and then manually copied all changed files from the crash date and beyond into my trunk so that I could recommit the changes.

link|flag
Yes, that's what I ended up doing also. – rlovtang Nov 14 at 11:34

Your Answer

Get an OpenID
or

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