Difference between revisions of "Subversion"

From Linuxintro
imported>WikiSysop
(New page: To set up a subversion server, install the subversion software. Then useradd -m svn groupadd svn Find out where subversion expects its repository /etc/init.d/svnserve start Starting sv...)
 
imported>WikiSysop
Line 10: Line 10:
 
Start the subversion server
 
Start the subversion server
 
  /etc/init.d/svnserve start
 
  /etc/init.d/svnserve start
 +
Run it
 +
svn co svn://localhost
 +
Checked out revision 0.

Revision as of 04:29, 8 October 2008

To set up a subversion server, install the subversion software. Then

useradd -m svn
groupadd svn

Find out where subversion expects its repository

/etc/init.d/svnserve start
Starting svnserve svnserve: Root path '/srv/svn/repos' does not exist or is not a directory.
                                                                     failed

Create the respective directory

svnadmin create /srv/svn/repos

Start the subversion server

/etc/init.d/svnserve start

Run it

svn co svn://localhost
Checked out revision 0.