svn

How to add users to or edit user passwords for a Subversion repository

Key words and phrases: 
svn password
Description & Info: 

add new users to an svn repository:

sudo vi svnrepo/conf/passwd

by Benjamin Melançon
Posted on Thu, 2008-07-17 22:12
in

Adding a new version of Drupal core to Agaric's Piston-enabled deployment system

Description & Info: 

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).

by Benjamin Melançon
Posted on Wed, 2008-07-16 23:56
in

Using Subversion's "include" functionality– the svn:externals property

Key words and phrases: 
svn externals
Description & Info: 

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.

by Benjamin Melançon
Posted on Thu, 2008-03-13 21:53
in

Setting up a fresh Drupal installation from the Agaric repository.

Key words and phrases: 
Subversion checkout repository structure site recreating making new copy
Description & Info: 

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

by Benjamin Melançon
Posted on Tue, 2007-12-11 21:15
in

Drush subversion integration: svn add and svn commit following pm install

Description & Info: 

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

by Benjamin Melançon
Posted on Tue, 2007-12-04 08:57
in

svn diff

Key words and phrases: 
svn diff
by Benjamin Melançon
Posted on Mon, 2007-11-26 17:28
in