* Stephen Connolly:

> Have you considered doing a binary search to find the revision that it was
> deleted in?
>
> svn ls .../t...@2
> Exists
> svn ls .../t...@head
> No such file in revision 50002
> svn ls .../t...@25002
> Exists
> svn ls .../t...@37502
> No such file
> svn ls .../t...@31252
> Exists, etc
>
> You'll get the revision in at most log2 HEAD iterations

If the path has been deleted multiple times, the result won't be
stable in the sense that you're guaranteed to get the same answer if
further (unrelated) commits are made.  This could be quite confusing.

-- 
Florian Weimer                <fwei...@bfk.de>
BFK edv-consulting GmbH       http://www.bfk.de/
Kriegsstraße 100              tel: +49-721-96201-1
D-76133 Karlsruhe             fax: +49-721-96201-99

Reply via email to