In a project I cannot find one file. I suppose that file was deleted in some revision.
I know only the name of file. Is possible to find this file with the Tortoise SVN client?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you have terminal svn client you can do something like
Or you can try the following (in linux):
This will print complete svn operations log of a project, starting from revision1, until HEAD.
Than you filter the (D)eleted files, not interested in (M)oved or (A)dded, and finally grepping for the “filename” in the set of (D)eleted files.
You can execute similar command in PowerShell (Winboze)
to get a list of all deleted files, than use MSOffice2011 + search I guess 😀
Hope that helps.