Changes between Initial Version and Version 1 of Subversion
- Timestamp:
- 12/22/08 01:31:51 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Subversion
v1 v1 1 = General = 2 To be documented later. 3 4 = Setting up access rights = 5 Setting 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 {{{ 7 1) cd /var/svn 8 2) mkdir foorepo 9 3) svnadmin create foorepo 10 4) chmod -R 770 foorepo 11 5) chmod -R g+s foorepo/db 12 6) chgrp -R svn-foorepo foorepo 13 (svn-foorepo is the group name that I created in /etc/group to hold the svn users) 14 }}}