how can I search an svn repository for the existence of files in any revision
问题 How can I search if a file named foo.txt was ever committed to my svn repository (in any revision)? 回答1: Right click on the checked out folder's root > TortoiseSVN > Show Log You can enter file names just as well there. 回答2: This should work for you: svn log -r 0:HEAD -v $REPOSITORY_PATH | grep "/foo.txt" This will give you the paths to the files and the state from the log. If you get any hits, you know it existed at some point. If you get no results, there is nothing matching anywhere in the