Changes between Version 3 and Version 4 of Subversion


Ignore:
Timestamp:
12/22/08 12:51:36 (15 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Subversion

    v3 v4  
    1 = General =
     1= Server =
     2== General ==
    23{{{
    34emerge subversion
     
    1920}}}
    2021
    21 = Setting up access rights =
     22== Setting up access rights ==
    2223I currently create a new group for each repository and assign users to the group if they need read/write access.
    2324{{{
     
    4142Edit /var/svn/repos/conf/passwd and add the users (see examples)
    4243
    43 = Setting up SSH access =
     44== Setting up SSH access ==
    4445Users that use the svn need to have ssh access set up correctly to the server. This has to be done by ssh-keys.
    4546
    4647See http://linuxproblem.org/art_9.html
    4748
     49= Client =
     50== Setting up an SSH-Tunnel ==
     51We do not use the standard port for ssh and svn does not support the common <user>@<host>:<port>/<path_to_repository> syntax.
     52Therefor we have to set up a specific tunnel in run-time config file on the client!
     53
     54Edit ~/.subversion/config (on the client) and at the end of the [tunnels section] make the following entry (port not shown for security reasons):
     55{{{
     56eussh = $EUSSH /usr/bin/ssh -p <port>
     57}}}
     58
     59== Test the connection ==
     60You can test the connection using the following command (this should not show any errors):
     61{{{
     62svn list svn+eussh://hmun@euserv/var/svn/repos/
     63}}}