宝塔服务器面板,一键全能部署及管理,送你10850元礼包,点我领取

SVN创建资源库和远程连接配置

本机安装的是TortoiseSVN-1.7.5.22551-win32-svn-1.7.3.msi

安装好后会在鼠标右键中出现如图最后两项的选项:

SVN创建资源库和远程连接配置-风君雪科技博客

创建svn资源库:

1.首先是创建一个资源库文件夹,本例是sevenStar

如图:

SVN创建资源库和远程连接配置-风君雪科技博客

2.在创建的文件夹sevenStar上右键,选择TortoiseSVN—>Create repository here选项

如图:

SVN创建资源库和远程连接配置-风君雪科技博客

此时会出现一个对话框,如图:

SVN创建资源库和远程连接配置-风君雪科技博客
 
@1 选择第一个按钮Create folder structure,会在sevenStar文件夹中创建svn所需要的默认的目录结构
创建成功会弹出如图的对话框:
 
SVN创建资源库和远程连接配置-风君雪科技博客
 
创建成功之后确定即可
@2 选择第二个按钮Start Repobrowser,会浏览到本资源库的目录结构,同时可以设置远程访问资源库链接(URL):svn://192.168.1.12/sevenStar,
以备在eclipse中下载上传
如图:
SVN创建资源库和远程连接配置-风君雪科技博客
单击OK按钮即可设置好
 
3. 查看本资源库的设置是否成功
在sevenStar文件夹上右键,选择Check out…
如图:
SVN创建资源库和远程连接配置-风君雪科技博客
就会弹出一个Checkout对话框
如图:
SVN创建资源库和远程连接配置-风君雪科技博客
最上面的URL of repository:中的地址:svn://192.168.1.12/sevenStar就是我们刚才设置的
 
4.对本资源库进行配置
打开sevenStar文件夹有如图的目录结构:
SVN创建资源库和远程连接配置-风君雪科技博客
打开配置文件夹conf,有authz,passwd,svnserve.conf三个文件
如图:
SVN创建资源库和远程连接配置-风君雪科技博客
@1 打开authz文件修改:
在[groups]下添加sevenStar资源库对用户的访问权限
 
[groups]
[sevenStar:/]
* = rw
 
上面配置说明sevenStar资源库对所有用户具有读写访问权限
@2 打开passwd文件修改:
在本文件中[users]下添加用户和密码,格式是:用户 = 密码
 
[users] # harry = harryssecret # sally = sallyssecret dev=dev wbd=wbd
如上,添加了dev用户,密码为dev
添加了wbd用户,密码为wbd
@3 打开svnserve.conf文件修改:
在本文件中进行访问权限设置
在[general]下把
anon-access = read auth-access = write password-db = passwd
authz-db = authz
realm = My first repository
几项前的注释(#)去掉即可
 
[general] ### 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
 
以上就是在svn服务器端创建sevenStar资源库的详细步骤
http://www.cnblogs.com/qixing/archive/2013/01/23/2873211.html