1. Build SVN server on centos6.5, install SVN server: Yum install Subversion
2. Create a warehouse directory under any directory, and place it in the/data/mypros directory
3. Execute the command: Svnadmin Create/data/mypro, initialize the warehouse, you can see more files under the directory, into the Conf directory, edit Authz, at the end of the file to increase;
[/]
Jack=rw
Exit save, and then edit the passwd file to add the user name and password: jack=jack
Edit the svnserve.conf file again, open the comment, and modify the following:
Anon-access = None
auth-access = Write
Password-db = passwd
Authz-db = Authz
Realm =/data/mypros
Exit and save.
4. Turn on SVN service: svnserve-d-r/data/mypro
5. The client test is successful.
About creating an SVN branch:
Create three directories under the SVN server root directory, trunk,branches,tags, then select the directory where you want to create the branch, click Create Branch, and then adjust the address to the branches directory, add the version number, you can
CentOS Build SVN server