I want to move my repo to new server. My repo contains multiple files. To move I have created a repository dump file with command
$svnadmin dump file:///repo/path > file.dump
copied dump file to new server and loaded the dump file in new repository with command
$svnadmin load file:///new/repo/path < file.dump
It successfully loaded the file with log
<<< Started new transaction, based on original revision 1
------- Committed new rev 1 (loaded from original rev 1) >>>
I am not able to see files and folders which I have loaded from dump file at new repository location. Please help if I am missing anything.