User login

Get a Drupal module from CVS

HOWTO: Checkout a drupal module from Drupal CVS
http://drupal.org/node/120511

Thanks to John Forsyth's comment:

cvs -z6 -d:pserver:anonymous:anonymous@cvs.drupal.org:/cvs/drupal-contrib checkout -r DRUPAL-6--1-4 -d example_module contributions/modules/example_module

To take the one we actually always want, and that will then take care of all this foolishness itself, let's get Drush. Check for what the latest version is at that project page, 6.x-1.1 in this example, and get it:

sudo cvs -z6 -d:pserver:anonymous:anonymous@cvs.drupal.org:/cvs/drupal-contrib checkout -r DRUPAL-6--1-1 -d drush contributions/modules/drush

and for the currently-latest Drupal 5, version 1.3:

sudo cvs -z6 -d:pserver:anonymous:anonymous@cvs.drupal.org:/cvs/drupal-contrib checkout -r DRUPAL-5--1-3 -d drush contributions/modules/drush

Earlier efforts:
cvs -z9 -d:pserver:anonymous:anonymous@cvs.drupal.org:/cvs/drupal-contrib checkout -r HEAD contributions/modules/example_module
Not smegging working the way we want it to.

Well that's a little confusing.

Nightly development snapshot from CVS branch: HEAD
Download: node_time_tracker-5.x-1.x-dev.tar.gz
Size: 10.04 KB
md5_file hash: 4cd5876ce3301830368a615a2633bbfa
First released: February 14, 2007 - 08:05
Last updated: June 25, 2007 - 08:12

Resolution

Searched words: 
drupal check out module from cvs get module from Drupal.org CVS cvs drupal-contrib

Comments

To get all modules for a Drupal version

cvs -z6 -d:pserver:anonymous:anonymous@cvs.drupal.org:/cvs/drupal-contrib checkout -r DRUPAL-5 -d alld5modules contributions/modules

(Note: I don't currently have the hard drive space to make certain that this works!)

The "-d" lets you name the directory you want to create for the checkout and the "-r" lets you name the version (revision tag?) you want.

head

Earlier efforts:
cvs -z9 -d:pserver:anonymous:anonymous@cvs.drupal.org:/cvs/drupal-contrib checkout -r HEAD contributions/modules/example_module
Not smegging working the way we want it to.

You need -r module-HEAD, not just HEAD. Ie. -r drush-HEAD.

Post new comment

The content of this field is kept private and will not be shown publicly.
  • You may post code using <code>...</code> (generic) or <?php ... ?> (highlighted PHP) tags.
  • You can use Markdown syntax to format and style the text. Also see Markdown Extra for tables, footnotes, and more.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd> <img> <blockquote> <small> <h2> <h3> <h4> <h5> <h6> <sub> <sup> <p> <br> <strike> <table> <tr> <td> <thead> <th> <tbody> <tt> <output>
  • Lines and paragraphs break automatically.

More information about formatting options

By submitting this form, you accept the Mollom privacy policy.