To sum it up, you have to first find out which version the file still exists in (that would be the version just BEFORE the file was deleted). To do that use svn log to look for it. I searched for it with something like this:
svn log --verbose | grep -B 10 name_of_file
The -B option is how many lines before the found line should be displayed. Quite important as the version number is actually on top of the log and not on each file line.
Once you know which version you have to recover from, it is a small matter of copying that file from the repository with a svn copy command:
svn copy --revision num_of_revision http://path/to/file/in/repository ./name_of_file
The file would be recovered and you'd have to commit it again to the repository so that it'd be available for everyone.
No comments:
Post a Comment