I deleted a file from a repo and now want to put it back. The best I can figure out is to:
- update to the revision before the delete
- copy the files elsewhere
- update to head
- copy the files back
- add them
- commit
That just smells bad and it looses all history to boot. There has got to be a better way to do this. I have already looked in The SVN Book but didn't find anything and am now looking down the SVN tag list.
You should be able to just check out the one file you want to restore. Try something like
svn co svn://your_repos/path/to/file/you/want/to/restore@rev
whererev
is the last revision at which the file existed.I had to do exactly this a little while ago and if I remember correctly, using the
-r
option tosvn
didn't work; I had to use the:rev
syntax. (Although I might have remembered it backwards...)The easiest way I have been able to restore files and not lose revision history is using SVN copy, the merge example above to me seems like a more complex way to achieve the same thing. Why is there a need to merge when you simply want to restore a revision?
I use the following in this instance and it works quite well.
I always seem to use
svn copy
as a server operation so not sure if it works with two working paths.Use svn merge:
So an example:
For TortoiseSVN (I think...)
That is completely untested, however.
Edited by OP: This works on my version of TortoiseSVN (the old kind without the next button)
The trick is to merge backwards. Kudos to sean.bright for pointing me in the right direction!
Edit: We are using different versions. The method I described worked perfectly with my version of TortoiseSVN.
Also of note is that if there were multiple changes in the commit you are reverse merging, you'll want to revert those other changes once the merge is done before you commit. If you don't, those extra changes will also be reversed.
I always seem to use svn copy as a server operation so not sure if it works with two working paths.
Here is an example of restoring a deleted file into a local working copy of the project:
While being inside the project directory. This works as well for restoring entire directories.
With Tortoise SVN:
The problem with doing an svn merge as suggested by Sean Bright is that is reintroduces other changes made in the same revision as the deletion. An svn copy is a more targeted operation that will only affect the deleted files.
Using Tortoise SVN you can resurrect a file that has been deleted from your working copy directory and from later SVN revisions, via a svn copy as follows:
The deleted file will now be in the working copy folder. To re-add it back to SVN, right click on the restored file and select SVN Commit.
NB: This method will preserve the previous history of the restored file, however to see the prior history in the TortoiseSVN log you need to make sure "Stop on copy/rename" is unchecked in the Log messages dialog.