vote up 1 vote down star

I have a project in subversion, called inboundem. It was my first, and when I created it, I omitted trunk. I need to get it into the correct structure as inboundem/trunk. I had another project like this, but as there were no revisions, I did svn delete and then svn import and that worked well. But I have a lot of revisions with inboundem and I do not want to lose the history.

I cannot do svn move, as svn will not let me move a project into itself.

I suspect that I need to go down the svnadmin dump/load path, so I have done:

svnadmin dump /subversion/active | svndumpfilter include inboundem > inboundem.dump

and that has created a dump file with all my history for inboundem. But what do I do now?

I suspect that I should do svn delete and erase the project, then manually edit the dump file and change Node-path everywhere from inboundem to inboundem/trunk, and then do

svnadmin load /subversion/active < inboundem.dump

Is this safe? Is there an easier way? Maybe I should just brute force it, and check out all the revisions one by one, delete the project and then recreate the project revision by revision.

flag

60% accept rate

3 Answers

vote up 5 vote down check
svn mv svn://repo/inboundem svn://repo/trunk
svn mkdir svn://repo/inboundem
svn mv svn://repo/trunk svn://repo/inboundem/trunk
link|flag
This is more simple than my solution. – Malfist Jan 30 at 18:59
And it works. Thanks. – codebunny Jan 30 at 19:17
And it preserves the history. – gbarry Jan 30 at 20:40
Yea. I've had to do it more than once myself. – bendin Jan 30 at 20:49
vote up 1 vote down

Why not just create a folder in the project root named "trunk" and then move all the files/folder in root into that folder?

I have done this before in Tortoise, I am not sure what underlaying command it uses because you are saying svn move won't work for you. Maybe try copy and then delete?

link|flag
Because it would copy the .svn folders and seriously screw with SVN – Malfist Jan 30 at 18:55
Ah, surely there is a way to tell the command line client to ignore .svn. I don't know what OS you are using, but Tortoise will let you do a simple drag and drop in the repository viewer to complete this task. – James McMahon Jan 30 at 18:58
Move the folders with a right drag (if you're using TortoiseSVN). When you release the mouse button after a right-drag, choose "SVN move items to here" which will do an 'svn mv' instead of an explorer only move. – Stefan Jan 30 at 19:02
Oh, thats a nice trick Stefan. I usually just do this through the repo-browse feature. – James McMahon Jan 30 at 19:03
vote up 0 vote down

You can use svn export and then move the exported source into /trunk and then commit the changes (adding your new folders in /trunk)

And then delete (and call delete) on the old folders, there will still be a history of them for you to restore to if you have to, but it will restore them to the old folder, not the new trunk. All svn export does is move the chosen directory(s) to a new location without the .svn folder so it acts as if it's not a working copy, and from there you can add it to your working copy.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.