A while ago I deleted a file from Subversion repository and now I want to take a look at its contents. I determined that the file was deleted in revision 68, so I tried the following:
svn cat -r 67 path/to/file
from the project root directory, svn tells me that svn: E155010: The node '/absolute/path/to/file' was not found.
Then I tried:
svn list -r 67 path/to
and Subversion clearly shows the file in the directory. So what am I missing?
I tried the answer from examining history of deleted file and it isn't working for me.