Very Easy SVN Server for Local Development

This is a very easy installation that lacks in security. That means do it on your personal laptop, no other users but you.

  • Install the subversion package (i.e. apt-get install subversion)
  • sudo mkdir -p /home/svn/
  • sudo svnadmin create /home/svn/project_name
  • sudo chmod -R 777 /home/svn/project_name
  • svn co file:///home/svn/project_name

That’s it. You are ready to import the initial files and then commit/update everything you want.

This entry was posted in Web Development and tagged . Bookmark the permalink.

Leave a Reply