Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I suggest setting up a simple <a href="http://svnbook.red-bean.com/en/1.0/ch06s03.html" rel="nofollow noreferrer">svnserve</a> server for the repository. It isn't very difficult to set up and you don't need to worry about file permission issues, and I think that it makes dealing with multiple projects and users much easier. The svnserve server isn't as secure as the <a href="http://svnbook.red-bean.com/en/1.0/ch06s04.html" rel="nofollow noreferrer">Apache WEB_DAV module</a> since it doesn't communicate with the clients over a secure protocol like HTTPS, but it seems you guys do not need to worry about that with your current environment.</p> <p>EDIT: You will want to edit two files within the <code>conf</code> directory where your repository is located. In <code>svnserv.conf</code> the above linked guide describes a basic configuration as follows:</p> <pre><code>[general] password-db = password-file #anon-acccess = read #auth-access = write realm = What you want to call your repository </code></pre> <p>The commented fields above are the default values. They can be set to not allow anonymous access or not allow authorized users to write to the repository among other things.</p> <p>The <code>password-db</code> field has the value <code>password-file</code>, thus this file will need to be named the same and contain the users and their passwords as follows:</p> <pre><code>[users] lightfoot = somepassword joe = password ... </code></pre> <p>Also note that to access the repository you will need to use the <code>svn</code> protocol. </p> <pre><code>svn co svn://server/some_repository </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload