Fábio Vianna - 2015-03-18

Create default directories
It's common practice among Subversion users to create a /trunk, /branches, and /tags directory at the root of each repository. If you'd like to do that, follow these instructions:
svn checkout --username=fabiomartinsbr svn+ssh://fabiomartinsbr@svn.code.sf.net/p/futmaker/svn/ futmaker-svn
cd futmaker-svn
mkdir trunk branches tags
svn add trunk branches tags
svn ci -m "Add initial directories"

To make the default checkout url for your repo point to your new /trunk directory instead of the root, go to the Admin / Tools screen, click on 'Checkout URL' under your repo, add 'trunk' to the end of the url, and click 'Save.'
Import project on disk to Subversion
cd existing-futmaker-svn
svn import svn+ssh://fabiomartinsbr@svn.code.sf.net/p/futmaker/svn/ -m "Initial commit"
Import remote repository to Subversion
Use the repository clone tool then check out a working copy once you receive a completion email.