Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
sudo mkdir /var/svn-repos
sudo addgroup --gid 3001 subversion
sudo chown -R www-data:subversion /var/svn-repos/
sudo chmod -R 750 /var/svn-repos/
Code Block
languagebash

Now add yourself to the group 

Code Block
languagebash
sudo usermod -a -G subversion rfongyee

Creating Repositories

First go to or create the directory you want to create the repositories in for this example we've created the svn-reps directory in /var/
The svnadmin allows you to create svn repositories and allows you to perform several maintenance operations on the repositories

...