用 Subversion 构建版本控制环境
2009-12-17 00:00:00 来源:WEB开发网在Windows下安装最为方便的办法就是下载安装程序,你可以到下面这个地址下载最新的二进制压缩版本svn-win32-1.2.3.zip ,地址是: http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=91 把该文件解压到一个目录,假定为 D:\subversion。
接下来新建一个存放项目的资源库目录,例如:D:\repository\project1,执行下面命令对这个项目目录进行初始化: D:\subversion\bin> svnadmin create D:\repository\project1
Subversion会在D:\repository\project1目录下生成很多的子目录以及文件,接下来我们需要设置该项目的用户信息以及项目的基本信息,打开D:\repository\project1\conf\passwd文件,去掉[users]的注释,并添加用户如下:
### This file is an example password file for svnserve.
### Its format is similar to that of svnserve.conf. As shown in the
### example below it contains one section labelled [users].
### The name and password for each user follow, one account per line.
[users]
admin = admin1234
liudong = liudong123
Subversion使用了明码存储用户的口令,这应该算是它的一个不足。
接下来打开conf\svnserve.conf修改如下
[general]
anon-access = read
auth-access = write
password-db = passwd
realm = project1
在做完这些基本的设置后就可以启动 Subversion 了,当然最好的方式就是让 Subversion 做为一个服务来运行,我们可以通过一个第三方的工具 SVNService 让 Subversion 以 Windows 服务的方式运行。
Tags:Subversion 构建 本
编辑录入:爽爽 [复制链接] [打 印]更多精彩
赞助商链接