Changes between Initial Version and Version 1 of Subversion


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

--

Legend:

Unmodified
Added
Removed
Modified
  • Subversion

    v1 v1  
     1= General =
     2To be documented later.
     3
     4= Setting up access rights =
     5Setting up a new repository. I currently create a new group for each repository and assign users to the group if they need read/write access.
     6{{{
     71) cd /var/svn
     82) mkdir foorepo
     93) svnadmin create foorepo
     104) chmod -R 770 foorepo
     115) chmod -R g+s foorepo/db
     126) chgrp -R svn-foorepo foorepo
     13(svn-foorepo is the group name that I created in /etc/group to hold the svn users)
     14}}}