After the installation of SVN, following the steps below:
- Create repository
- Configuration
- Start the SVN Server
cd C:\Subversion\bin\
svnadmin create D:\Repos
svnserve.conf
[general]
anon-access = read #If you meet
#"svn: Not authorized to open root of edit operation"
#change read to none
auth-access = write #write means read and write
password-db = passwd #file "passwd"
authz-db = authz #file "authz"
realm = My Project #You could change this as you want.
passwd
[users]
austin = austin
ting = ting # userid = password
authz
[groups]
matrix = austin,ting # group_name = group_members, ....
[Repos:/] # The repository you create before.
# or [/] for each repository
@matrix = rw # @+group_name, rw => read and write
cd C:\Subversion\bin\
svnserve -d
沒有留言:
張貼留言