I've created a private project and one repository at assembla.
But I've made the mistake of not following the convention with the subdirectories.
So, now there are source files in the repo root directory.
How can I move them into /trunk subdir?
Reading this question, I saw that I have to have shell access to run the svnadmin commands.
I've tried bypassing them, and succeeded only in getting a dump of the repo and creating a new one.
I am stuck at the step in which I need to load the dump into the /trunk directory - I can only load it into root again.
I see that svn move
isn't a good option since there might be a case of wanting to return to an older revision, but since I am in the really early steps of the development of the project, it is unlikely for me to want to do that.
So should I try svn move
? If so, how should I do that? svn move ./ ./trunk/
would do?