I use this command to display the history of commits.
svnlook history -r 2 mypath
and I get this:
svnlook: Can't open file 'mypath/format': No such file or directory
I'm sure that "mypath" is correct. I also tried going into deeper directories. I tried with absolute and relative paths, I tried with the -r option and without but I always get the same result.
svnlook
is a server command. You can usesvn
to retrieve whatever data you need from the working copy. – Bumpy