您的位置:首页 > 其它

9歩完成SVN(subversion)服务端的安装配置

2013-08-29 17:29 387 查看
1.安装完成subversion

2.在E盘建立一个文件夹svnroot,在此文件夹内部建立SVN的一个文件夹

3.运行cmd,cd打开subversion安装目录的bin

4.输入命令svnadmin create E:\svnroot\SVN,打开SVN,你会发现多一些文件,或者是在SVN文件夹中右击鼠标,找到Tortoist SVN的create repository,点击

5.打开SVN文件夹下的config,

修改svnserve.conf,改成(看那几个英文你应该知道这个文件时干嘛的):

 

### This file controls the configuration of the svnserve daemon, if you

### use it to allow access to this repository.  (If you only allow

### access through http: and/or file: URLs, then this file is

### irrelevant.)

### Visit http://subversion.tigris.org/ for more information.

[general]

### These options control access to the repository for unauthenticated

### and authenticated users.  Valid values are "write", "read",

### and "none".  The sample settings below are the defaults.

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

[sasl]

### This option specifies whether you want to use the Cyrus SASL

### library for authentication. Default is false.

### This section will be ignored if svnserve is not built with Cyrus

### SASL support; to check, run 'svnserve --version' and look for a line

### reading 'Cyrus SASL authentication is available.'

# use-sasl = true

### These options specify the desired strength of the security layer

### that you want SASL to provide. 0 means no encryption, 1 means

### integrity-checking only, values larger than 1 are correlated

### to the effective key length for encryption (e.g. 128 means 128-bit

### encryption). The values below are the defaults.

# min-encryption = 0

# max-encryption = 256

在passwd文件中下部添加USER:

Xigua = xigua

Pingguo=pingguo

至于authr,是设置哪个哪个的权限(read、write),通过分组的方式,要用此文件则svnserve.conf中的那行也要取消注释(具体你可以查一下别人怎么分,不分的话就是所有的USER都有RW的权限)。

6.还是那个cmd,输入命令svnserve.exe -d -r E:\svnroot(这-d-r什么意思呢,自己输入svnserve.exe -h就知道了,至于输入地址是以此地址为根目录),这样subversion服务端就跑起来了。

7.随便什么目录下,右键SVN checkout,URL为svn://localhost/SVN,下面是repository目录地址,这要是发生错误,是因为你的地址有误,相信你会修改的。

8.右键Tortoist SVN,点击Repo-browser,浏览,输入你设置的用户及密码你就可以CRUD了。

9.至于导入导出,自己摸索一下,很简单,总不会什么都要说明白吧。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  subversion svn