OK, so suppose I know I added the file βfoo.txtβ to my Subversion repository in edition 500.
So, I can do svn log -v http://svnrepo/path/ foo.txt@500 and display all files added at the same time.
What is the fastest way to find when a file was deleted after it was added?
I tried svn log -r500:HEAD -v http://svnrepo/path/ foo.txt@500 , but it gives me a "path not found" - perhaps obviously because the file "foo.txt" does not exist in "HEAD "
I can try the binary search algorithm moving forward through revisions (and this will certainly be faster than typing this question), but is there a better way?
source share