Wed Aug 23 10:03:23 2006

Collection of Kuroo howtos

How to manage changes in etc files
Gentoo watcher

Other howtos

Installing trac

emerge subversion
svnadmin create $HOME/svn
chmod -R g-w $HOME/svn
chown -R apache:apache $HOME/svn
chmod -R g+rw $HOME/svn/db
chmod -R g+rw $HOME/svn/locks
rc-update -a svnserve default
/etc/init.d/svnserve start
nano $HOME/svn/conf/svnserve.conf
[general]
anon-access = read
auth-access = write
password-db = passwd
nano $HOME/svn/conf/passwd
[users]
id = passwd


Working with subversion

  • Checkout a copy from branch 0.80.0:
    svn checkout svn://kuroo.org/repos/kuroo/branches/0.80.0
    
  • After you've done you work, commit back all changes to the repository, fex editing the ChangeLog:
    svn commit ChangeLog 
    
  • Merging changes from trunc to branch 0.80.0 (Use dry-run first)
    svn merge --dry-run svn://kuroo.org/repos/kuroo/branches/0.80.0\
                        svn://kuroo.org/repos/kuroo/trunk 0.80.0 
    

Read more in the [subversion book].