How do you setup a shared Working Copy in Subversion

前端 未结 9 2287
盖世英雄少女心
盖世英雄少女心 2021-02-08 08:04

I still very new using Subversion.

Is it possible to have a working copy on a network available share (c:\\svn\\projects\\website) that everyone (in this case 3 of use)

9条回答
  •  一整个雨季
    2021-02-08 08:43

    You need to use svnserve (light-weight SVN server that comes with SVN) or apache mod.

    With it, you can configure permissions like this:

    [general]
    password-db = userfile
    realm = example realm
    
    # anonymous users can only read the repository
    anon-access = read
    
    # authenticated users can both read and write
    auth-access = write
    

提交回复
热议问题