Drupal svn source control notes

Here are some commands we used to get a drupal site version controlled:

svnadmin create /var/svn/repos/blowfish
sudo chown -R www-data:www-data /var/svn/repos/blowfish

svn co https://skullsquad.com/svn/blowfish
cd blowfish
mkdir trunk
mkdir branches
mkdir tags
svn add trunk branches tags
svn commit -m "initial svn repo layout"
cd trunk
mkdir files
mkdir modules
mkdir themes
svn add files modules themes
svn commit -m "initial drupal layout"

cd /var/www/drupal-6.4/sites
sudo svn co https://blowfish.skullsquad.com/svn/trunk blowfish.skullsquad.com
sudo cp /var/www/drupal-6.4/sites/default/settings.php /var/www/drupal-6.4/sites/blowfish.skullsquad.com/settings.php.sample
cd /var/www/drupal-6.4/sites/blowfish.skullsquad.com
svn add settings.php.sample
svn commit -m "added sample config"
cp settings.php.sample settings.php
sudo svn propset svn:ignore settings.php .