/p/compiler/repos
svnadmin create --fs-type fsfs /p/compiler/repos/<project-name>
svn import <path to current code> file:///p/compiler/repos/<project-name>/trunk -m "initial check-in of <project-name>"
svn co file:///p/compiler/repos/<project-name>/trunk <project-name>
svn co svn+ssh://login@<cs-machine-name>/p/compiler/repos/<project-name>/trunk <project-name>
trunk directory is useful later because we may want to create branch or tag directories in parallel to it.
When working on a machine outside the department firewall, add svn+ssh to the command as show in the "co" example above. The cs machine can be cycle1, but not heart (which does not have svnserve). I have tried remote import but have not tried svnadmin. -- ChenDing