You can either export it (supported by Versions) or reverse merge the revision in which the file was deleted (requires the command line). For the first way, select a view of the repository in which the file existed, then navigate to the file, right click, and export it into your working copy, add it, and commit.
For the second way, open your command line, and type: svn merge -c -<revision in which the file was deleted> <full svn path to the file> <working copy path to the directory in which the file lives> For instance, if you deleted file.txt in revision 17, and it was in /trunk/project/directory, the repository is at http://example.com/repo, and you have the trunk checked out as the root of your WC, you would type: cd path/to/working_copy svn merge -c -17 http://example.com/repo/trunk/project/directory/project/directory It should output A file.txt Note that this will also revert any other changes you made to files in that directory at the same time. If you don't want those, just revert them. HTH, Ray --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Versions" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/versions?hl=en -~----------~----~----~----~------~----~------~--~---
