您的位置:首页 > 其它

合并两个有序数组

2009-12-08 20:10 330 查看
SVN的安装和配置
工具:

1. Windows 2003 sp1

2. svn-1.3.0-setup.exe SVN服务端软件

3. SVNService.exe 添加到Windows服务需要的工具

4. TortoiseSVN-1.4.0.7501-win32-svn-1.4.0.msiSVN客户端软件

5. LanguagePack-1.4.0.7501-win32-zh_CN.exe SVN客户端软件的中文语言包

相关下载:

1.Subversion
http://subversion.tigris.org
2.客户端软件TortoiseSVN
http://tortoisesvn.tigris.org
Eclipse 下使用的插件,需要在线更新

更新地址: http://subclipse.tigris.org/update_1.0.x
安装指南: http://subclipse.tigris.org/install.html
安装SVN服务器

1. 安装服务器软件

2. 将SVN添加到Windows服务

1. 新建一个文件夹用来存放库文件 c:\SVN

2. 运行命令:SVNService -install -d -r c:\svn 安装 Windows 服务

3. 通过Windows服务管理平台启动SVN服务

4. 其它命令

1. 改变服务设置:

运行命令:SVNService -setup -d -r <newsvnroot>

在实际操作中,<newsvnroot>代表与SubVersion服务启动时不同的电子仓库目录.

2. 删除服务:

运行命令:SVNService -remove

安装客户端工具

因为安装TortoiseSVN 需要重启系统,所以在这里略过安装步骤

配置SVN

1. 配置服务器

打开仓库目录下的 conf/svnserve.conf 文件

********************************************

[general]

# anon-access = read

# auth-access = write

password-db = passwd

authz-db = authz

--------------------------------------------

去掉 password-db = passwd 和 authz-db = authz 的注释

前两行为匿名用户的权限

后两行为启用配置文件来对用户和权限进行管理

注意:所有配置信息必须顶格

2. 配置用户

打开仓库目录下的 conf/passwd 文件

[users]

admin=admin等号左边为用户名,右边为密码

新增用户只需要在这里直接增加即可,如: oksonic = 123456

增加好用户以后需要重启SVN服务器

3. 配置工作组

打开仓库目录下的 conf/authz 文件,文件内容如下:

********************************************

# [groups]

# harry_and_sally = harry,sally

# [/foo/bar]

# harry = rw

# * =

# [repository:/baz/fuz]

# @harry_and_sally = rw

# * = r

--------------------------------------------

因为所有配置信息都被注释掉了,所以所有的用户都有管理员的权限(所有目录的读/写)

[groups] 这里的内容为组的配置

把已经建好的两个用户合并为一个分组,用户名之内以逗号分隔,配置内容如下:

********************************************

[groups]

admin_group = admin,oksonic

--------------------------------------------

4. 配置权限

SVN 的权限只有两个,1 是只读,2 是读/写

例:

********************************************

[/]

# 指定所有的仓库默认只读

* = r

# 指定 admin_group 组的用户对库中所有内容具有读/写权限

@admin_group = rw

--------------------------------------------

[/] :这里代表的仓库的目录,此为根目录

* = r : * 号代表所有的用户, r 为只读

现在需要建一个项目到仓库中

1. 在桌面建一个文件夹,如:SVN测试

2. 在目录中新建几个文件和文件夹以作测试

3. 使用客户端工具把目录中的所有文件加入到SVN服务器中的 test 目录中

补充哈:
SVN1.4.3 安装和配置:

1)下载svn-1.4.3-setup.exe,安装的目录为: D:\Subversion ; 仓库目录: F:\Major\Java\ExerciseSVN

2)由于1.4版本的更新,不需要SVNService.exe(添加到Windows服务需要的工具),先创建SVN服务,命令如下:

D:\>sc create SVNService binpath= "\"D:\Subversion\bin\svnserve.exe\" --service --root \"F:\Major\Java\ExerciseSVN\"" displayname= "Subversion Server" depend= Tcpip start= auto

其中SVNService为服务名, start属性为确定SVNService服务的属性,此为自动启动, 注意=左右边的空格,还有"";
启动服务: D:\> net start SVNService 停止:D:\> net stop SVNService

3)创建仓库, D:\>svnadmin create F:\Major\Java\ExerciseSVN

authファイルの内容
### This file is an example authorization file for svnserve.
### Its format is identical to that of mod_authz_svn authorization
### files.
### As shown below each section defines authorizations for the path and
### (optional) repository specified by the section name.
### The authorizations follow. An authorization line can refer to a
### single user, to a group of users defined in a special [groups]
### section, or to anyone using the '*' wildcard. Each definition can
### grant read ('r') access, read-write ('rw') access, or no access
### ('').

[groups]
# harry_and_sally = harry,sally
Gquji = quji

# [/foo/bar]
# harry = rw
# * =
[/]
quji = rw
* =

# [repository:/baz/fuz]
# @harry_and_sally = rw
# * = r
[/aswet]
@Gquji= rw
* = r
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: