SVN authentication using mod_auth_mysql
Here's a tip by leop:
You are browsing documentation for an older version of Drupal, which is not supported any longer, and the information may not be correct. See current documentation for Contributed modules
For subversion you need the "SVN backend" module - http://drupal.org/project/versioncontrol_svn - not the CVS one.
Step 1: create an SVN repository (skip this if you already have one)
svnadmin create /home/joe/testreposvn co file:///home/joe/testrepo /home/joe/testrepo-checkoutcd /home/joe/testrepo-checkoutecho "Blah" > a.txtsvn add a.txtsvn commit -m 'Initial Blah!'Step 2: set up your Drupal site with that repository
Here's a tip by leop: