Reputation: 525
We have a svn server sucesfully running since a couple of years. We structure everything in one repository, with the structure:
--Project 1
--trunk
--source
--branch
--tag
--Project 2
--trunk
--branch
--tag
Unfortunately, somebody created a project without the trunk/branch/tag structure. So now we have
--Project 1
--trunk
--source
--branch
--tag
--Project 2
--trunk
--branch
--tag
--Project 3
--source
What would be the preferred way, to move the folders into the right folder structure, without losing the file history (quite some commits were already done on project 3). We're using svn plugin within eclipse, but Tortoise or commandline is also fine.
I appreciate any help!
Upvotes: 0
Views: 128
Reputation: 9248
You can simply create the trunk
, tags
, and branches
folders and move the existing source
folder into the trunk
folder.
Here are two ways how you can achieve this:
trunk
folder.source
folder into the trunk
folder by dragging it onto the trunk
folder.trunk
, tags
, and branches
folders locally.source
folder into the trunk).source
folder and drag it with the right mouse button still pressed onto the new trunk
folder.Upvotes: 2