Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SVN export is sometimes returning error E160013 "path not found"

Tags:

svn

Using svn.exe export for a an old revision where the filepath has since changed - I get E160013 "path not found" - yet I can clearly see the file at its old path when I use Tortoise repo-browser to that old revision.

How can I use the command line to export files from old revisions where the path has since changed ?

like image 989
Josh Reuben Avatar asked Oct 29 '12 07:10

Josh Reuben


1 Answers

Did you use svn export -r<RRR> <url>? Use svn export <url>@<RRR> instead.

like image 138
cxxl Avatar answered Oct 20 '22 02:10

cxxl