On Sat, 2004-01-24 at 20:43, Malte S. Stretz wrote: > Hi folks, especially Sander :) > > I've been trying for the last 30 minutes to get the log for a file which was > once removed (ie. moved to the Attic in CVS terms).
There is no attic. > It's the file > fixpath.pl (in the "root"); I tried various things like > svn log fixpath.pl -r 3417 > (that's the revision when it was removed), but no success. Any ideas? Very simple: $ svn log -r 3416:0 http://svn.apache.org/repos/asf/incubator/spamassassin/trunk/fixpath.pl IOW, choose a revision where the file still existed. You should be able to find the rev a file existed in by doing a grep for it in the output of svn log -r http://.../trunk. If the line starts with: A -> the file was added there, D -> it was deleted M -> it was modified Sander
