Reputation: 241
I've set up svn
/home/svn/repository/project
and created trunk, branch and tags under /tmp/svn-structure-template
.
I have a project /home/project
. How do I link it to repository, trunk and branch?
Thanks in advance.
Upvotes: 1
Views: 613
Reputation: 18864
Initial setup of a new project is typically done the below way
Variant "a" (remote mkdir)
Variant "b" (local mkdir)
Once the working copy of the repository is created one can put new files/dirs to the working copy and add it to version control using "svn add" + "svn commit".
Alternatively one may use "svn import" to upload a directory tree directly to the repository under a specified url.
Upvotes: 4