Reputation: 282875
I have a project that I've checked into my SVN repo. Now I've created a second version of the project located in a different folder. I want to check this folder in as well, without interfering with the original project. Looking at my repo, it doesn't look as though I have the typical trunk/branches/tags folders, for whatever reason. So,
trunk
?branches/v2
SVN has caused me all sorts of nightmares in the past, so I want to make sure I do this correctly.
Upvotes: 1
Views: 97
Reputation: 10997
How do I move the original project into a subfolder, like trunk?
How can I create a folder for, and check all the v2 files into a new folder like branches/v2?
When I want v2 to replace the trunk completely, how can I do that?
You need to merge my_rep/branches/v2 to my_rep/trunk using any diff tool.
Upvotes: 1
Reputation: 13053
You have to make the trunk/branches/tags folders yourself.
svn mv original trunk
(where original is your original code folder, you might have multiple files).svn add
.Upvotes: 1