edicky 发表于 2013-1-29 22:49:50

windows下架设subversion服务器

windows下架设subversion服务器

                  关键字: windows下架设subversion服务器
<div class="blog_content">一、安装
下载
http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=91

如:安装到 D:\deploy\Subversion

二、建立Repository
打开命令窗口, 键入 :
    svnadmin create --fs-type fsfs G:\svnsrc\game

三、配置Repository
进入Repository目录,在本文中是 G:\svnsrc\game
,你会看到conf目录,进入该目录,你会看到svnserve.conf和passwd两个文件
对两个文件作如下修改
svnserve.conf
http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif[general]
http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif### These options control access to the repository for unauthenticated
http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif### and authenticated users.  Valid values are "write", "read",
http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif### and "none".  The sample settings below are the defaults.
http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gifanon-access = read
http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gifauth-access = write
http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif### The password-db option controls the location of the password
http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif### database file.  Unless you specify a path starting with a /,
http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif### the file's location is relative to the conf directory.
http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif### Uncomment the line below to use the default password file.
http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gifpassword-db = passwd
http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif
http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif
页: [1]
查看完整版本: windows下架设subversion服务器