I have an SVN repository with a very huge tree. I stare into the changelog in Tortoise SVN and see that in some revision X another user added a subtree with a project that is interesting to me. Then in revision X+P he deleted the project.

I want that subtree as a whole - without manually retrieving each file with Tortoise SVN and manually restoring the subtree structure.

Normally I would expect a tag being added between those revisions, so I'd go into that tag and export from there. In this case revisions are very close and there's no tag between them.

How do I retrieve a whole deleted subtree with Tortoise SVN?

link|improve this question

76% accept rate
feedback

3 Answers

up vote 2 down vote accepted

Use "Update to revision" or checkout using a revision number, then do the export.

link|improve this answer
feedback

Most subversion commands take a -r parameter which defines on which revision the command is supposed to work. So in your example if you want to export the code you can do something like this:

svn export -r [revision number that has the code] [URL to repo]

Update:

Sorry, I did not see you wanted to use TortoiseSVN. I don't have a Windows here. But if all else fails the command line client should be somewhere in the TortoiseSVN installation IIRC.

You can try to use the repo browser though, I think that can switch to a certain revision. And maybe you can export from there.

link|improve this answer
Hm... This implies I don't use Tortoise SVN, doesn't it? – sharptooth Apr 7 '11 at 9:08
Yeah, sorry I missed that TortoiseSVN part. I updated the answer a bit, but cannot be more specific of the top of my head. – Steffen Apr 7 '11 at 9:14
@Trumpi: Could you please add this as an asnwer? – sharptooth Apr 7 '11 at 9:41
ok - I deleted the comment and put it as an answer. – Trumpi Apr 7 '11 at 9:42
feedback

Trumpi has it right - right click on the directory you have, and choose 'update to revision', then enter the last revision number where your subdirectory exists. Svn will make your local copy look exactly as it was at that point in time. You can then copy the sub-project somewhere, and update your working copy back to the HEAD revision.

Alternatively, open the repo browser, enter the revision number in the box at the top to see the state of the repository at that point in time, and select 'export' or checkout just that sub-project.

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.