zoukankan      html  css  js  c++  java
  • SVN创建资源库和远程连接配置

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

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

    创建svn资源库:

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

    如图:

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

    如图:

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

     
    @1 选择第一个按钮Create folder structure,会在sevenStar文件夹中创建svn所需要的默认的目录结构
    创建成功会弹出如图的对话框:
     
     
    创建成功之后确定即可
    @2 选择第二个按钮Start Repobrowser,会浏览到本资源库的目录结构,同时可以设置远程访问资源库链接(URL):svn://192.168.1.12/sevenStar,
    以备在eclipse中下载上传
    如图:
    单击OK按钮即可设置好
     
    3. 查看本资源库的设置是否成功
    在sevenStar文件夹上右键,选择Check out...
    如图:
    就会弹出一个Checkout对话框
    如图:
    最上面的URL of repository:中的地址:svn://192.168.1.12/sevenStar就是我们刚才设置的
     
    4.对本资源库进行配置
    打开sevenStar文件夹有如图的目录结构:
    打开配置文件夹conf,有authz,passwd,svnserve.conf三个文件
    如图:
    @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资源库的详细步骤
     
     
  • 相关阅读:
    多校赛3- Painter 分类: 比赛 2015-07-29 19:58 3人阅读 评论(0) 收藏
    K
    Drainage Ditches 分类: POJ 图论 2015-07-29 15:01 7人阅读 评论(0) 收藏
    Power Network 分类: POJ 2015-07-29 13:55 3人阅读 评论(0) 收藏
    Labeling Balls 分类: POJ 2015-07-28 19:47 10人阅读 评论(0) 收藏
    Network 分类: POJ 图论 2015-07-27 17:18 17人阅读 评论(0) 收藏
    Borg Maze 分类: POJ 2015-07-27 15:28 5人阅读 评论(0) 收藏
    Case of the Zeros and Ones 分类: CF 2015-07-24 11:05 15人阅读 评论(0) 收藏
    滑雪 分类: POJ 2015-07-23 19:48 9人阅读 评论(0) 收藏
    Wormholes 分类: POJ 2015-07-14 20:21 21人阅读 评论(0) 收藏
  • 原文地址:https://www.cnblogs.com/qixing/p/2873211.html
Copyright © 2011-2022 走看看