Subversion Trunk/Branch/Tag?
Posted by: anthemheart
Posted on: 2008-02-05 22:08:00
If I create a subversion repository through the web panel, what are the steps to add the typical trunk/branch/tag directories to that repository?
Posted by: anthemheart
Posted on: 2008-02-05 22:08:00
If I create a subversion repository through the web panel, what are the steps to add the typical trunk/branch/tag directories to that repository?
Posted by: sdayman
Posted on: 2008-02-06 06:15:00
The wiki is your friend:
http://wiki.dreamhost.com/Subversion
-Scott
Posted by: anthemheart
Posted on: 2008-02-06 09:25:00
I've read the wiki. It doesn't explain this. At least not in a way that I understand if it does. I'm looking for a more detailed tutorial if anyone has one. I am still fairly new to using svn on the command line.
Thanks.
Edited by anthemheart on 02/06/08 09:26 AM (server time).
Posted by: Alpicola
Posted on: 2008-02-06 12:56:00
If you've got a brand new subversion repository that you haven't put anything into yet, then creating trunk/branch/tags directories is as easy as creating those directories in your local file system before you `svn import` your data. If you're trying to add trunk/branch/tags to an existing repository, `svn mkdir` the directories, then `svn move` your code into the newly created trunk, then `svn commit`.
Working with subversion controlled files isn't too different than working with regular files, except that you have to tell subversion what you're doing =)