Calendar

September 2010
S M T W T F S
« Jul    
 1234
567891011
12131415161718
19202122232425
2627282930  

Setting up a Subversion Server on Ubuntu Gutsy Gibbon server

Setting up a Subversion Server on Ubuntu Gutsy Gibbon server
All the required packages are available in the Ubuntu repositories.
Installing Subversion
Use apt-get:
sudo apt-get update
sudo apt-get install subversion

Creating a Repository
Let’s say you want your repository to be in /var/svn/repos, type in these commands:
cd /var
sudo mkdir svn
sudo svnadmin create /var/svn/repos

In order to control who has access to [...]