SVN

SVN server

Install

brew install svn
svnserve --version

Create repo

svnadmin create /patch/dir

Modify config files : under svn/conf - svnserve.conf、passwd、authz

svnserve.conf:

#Do not leave any space one left
anon-access = read
auth-access = write
password-db = passwd
authz-db = authz

passwd:

[users]
# harry = harryssecret
# sally = sallyssecret
test1 = 123456

authz:

Start SVN:

Close SVN

SVN client

Download and Install Cornerstone

Click "Add Repository"

Fill "SVN Server"

Server:127.0.0.1

Name: (username set in passwd file)

Passsword:(password set in passwd file)

Click "Add"

Click "Check Out Working Copy"

Last updated