SVN创建资源库和远程连接配置
本机安装的是TortoiseSVN-1.7.5.22551-win32-svn-1.7.3.msi
安装好后会在鼠标右键中出现如图最后两项的选项:
创建svn资源库:
1.首先是创建一个资源库文件夹,本例是sevenStar
如图:
2.在创建的文件夹sevenStar上右键,选择TortoiseSVN—>Create repository here选项
如图:
此时会出现一个对话框,如图:
# harry = harryssecret
# sally = sallyssecret
dev=dev
wbd=wbd
auth-access = write
password-db = passwd
### The anon-access and auth-access options control access to the
### repository for unauthenticated (a.k.a. anonymous) users and
### authenticated users, respectively.
### Valid values are “write”, “read”, and “none”.
### Setting the value to “none” prohibits both reading and writing;
### “read” allows read-only access, and “write” allows complete
### read/write access to the repository.
### The sample settings below are the defaults and specify that anonymous
### users have read-only access to the repository, while authenticated
### users have read and write access to the repository.
anon-access = read
auth-access = write
### The password-db option controls the location of the password
### database file. Unless you specify a path starting with a /,
### the file\’s location is relative to the directory containing
### this configuration file.
### If SASL is enabled (see below), this file will NOT be used.
### Uncomment the line below to use the default password file.
password-db = passwd
### The authz-db option controls the location of the authorization
### rules for path-based access control. Unless you specify a path
### starting with a /, the file\’s location is relative to the the
### directory containing this file. If you don\’t specify an
### authz-db, no path-based access control is done.
### Uncomment the line below to use the default authorization file.
authz-db = authz
### This option specifies the authentication realm of the repository.
### If two repositories have the same authentication realm, they should
### have the same password database, and vice versa. The default realm
### is repository\’s uuid.
realm = My First Repository
### The force-username-case option causes svnserve to case-normalize
### usernames before comparing them against the authorization rules in the
### authz-db file configured above. Valid values are “upper” (to upper-
### case the usernames), “lower” (to lowercase the usernames), and
### “none” (to compare usernames as-is without case conversion, which
### is the default behavior).
# force-username-case = none