I need to get the content of folder deleted from our repository long time ago
- I still know the name of the folder
- I don't know the revision in which it was deleted
- I don't know the date when it was deleted
- In the history of the parent directory there is no information (i.e., there is not comment mentioning that the folder is deleted)
svn log
doesn't seem to help:
$ svn log deleted_folder
svn: 'deleted_folder' is not under version control
svn co
also doesn't help
$ svn co URL/deleted_folder
How can I find out the last revision of the deleted folder?
EDIT: an option would be with brute force to check backwards for every revision but as there are more than 10K of them the option would be just for emergency. And I really feel that there definitely must be a better way.
svn log -v . | grep deleted_folder
and see if that'll help you find the revision that it was deleted in. – Contingencysvn co -rREVISION .../parent/deleted_folder
will not work.svn co -rREVISION .../parent
works. I'll check out a lot of unnecessary stuff but it works. – Nibbs