I am checking out the current version of a design with the current command:
svn checkout svn+ssh://test@example.com/mainrepository/trunk/projects/design1 .
That works fine, and I made some substantial changes to the implemetation so that I would like hold a copy of this milestone in the SVN. In other words, I would like to check in the current version into an own directory, ie "design2":
In doing so, I would like to be able to checkout this version similar as above
svn checkout svn+ssh://test@example.com/mainrepository/trunk/projects/design2 .
I have never create a new directory in the SVN, so I am wondering if I have to create a subrepository to be able to check out design2 as follows:
su - svn
mkdir svn+ssh://test@example.com/mainrepository/trunk/projects/design2
svnadmin create svn+ssh://test@example.com/mainrepository/trunk/projects/design2
Is there a problem when I create this from files that I checked out earlier? I know how to deal with SVN after this step, but I never created a new directory/repository for a new implementation so any help would be appreciated!