Monday, May 11, 2009

Setting up a new Subversion score repository

On the remote server:

$ svnadmin create foo

The foo repository now exists and contains the following:

$ ls foo
conf dav db format hooks locks README.txt

Access privileges must now be assigned:

$ vi foo/conf/svnserve.conf

And then:

anon-access = none
auth-access = write
password-db = passwd

And then:

$ vi foo/conf/passwd

And then:

[users]
tbaca = password

Initial check-in is now possible.

No comments: