svn
How to add users to or edit user passwords for a Subversion repository
add new users to an svn repository:
sudo vi svnrepo/conf/passwd
Adding a new version of Drupal core to Agaric's Piston-enabled deployment system
cd /RCS/agaric/drupal-core/
cvs -z6 -d:pserver:anonymous:anonymous@cvs.drupal.org:/cvs/drupal co -r DRUPAL-6-3 -d drupal-6 drupal
sudo svn add drupal-6
sudo svn commit -m "Drupal 6"drupal-6 and DRUPAL-6-3 need to be replaced with the major release and point release that you are dealing with (though with luck we'll have moved from CVS soon and this will all be moot).
Using Subversion's "include" functionality– the svn:externals property
DEPRECATED: Use Piston
In this case we're using svn externals to have a module in two places in a repository, but of course it works just as well for a truly external repository.
Setting up a fresh Drupal installation from the Agaric repository.
For a new version of Drupal
From a computer with a local checkout of the subversion repository:
cd ~/workspace/repos/agaric/drupal-core/
wget http://ftp.drupal.org/files/projects/drupal-5.5.tar.gz
tar -xzf drupal-5.5.tar.gz
rm drupal-5.5.tar.gz
svn add drupal-5.5
svn commit -m "latest and greatest Drupal"Checkout Drupal core
Drush subversion integration: svn add and svn commit following pm install
Posted to Drush issue queue:
Here's Agaric's workflow (ignore the lack of a link to Drush's path, we have too many Drupal installations to make that practical at the moment):
cd /var/www/drupal-5_3-live/sites/all/modules/
sudo php drush/drush.php -l http://example.com pm install fasttoggle
sudo svn add fasttoggle
