I made the mistake of creating a Subversion repository without the usual trunk, branches, and tags directories. That is, the root dire
Quick example of how I did it.
I wanted to move file:///svn/myRepo to file:///svn/myRepo/trunk
cd /
svnadmin dump /svn/myRepo > my.dump
killall svnserve
sudo rm -r -f /svn/myRepo
svnadmin create /svn/myRepo
svnserve -d -r /svn
svn mkdir file:///svn/myRepo/trunk -m "Created trunk dir"
svnadmin load /svn/myRepo --parent-dir trunk < my.dump