Getting Drupal Head via Bazaar
Last modified: September 22, 2008 - 09:05
Once Bazaar is installed and set up you can use Bazaar to download and then keep updated the current development version of Drupal.
The Bazaar mirror of the development version of Drupal is at http://bazaar.launchpad.net/~vcs-imports/drupal/main
Getting Drupal can take between 2 and 10 minutes.
The short version for getting Drupal is
bzr branch lp:drupalThe longer version for getting Drupal is
bzr init drupal
cd drupal
bzr pull http://bazaar.launchpad.net/~vcs-imports/drupal/mainIf you forget to initialize you run into this error bzr: ERROR: Not a branch: "/x/y/z/".
Later on, a simple command will keep you up to date:
bzr pullWe'll cover how to update a Drupal branch that you have modified in a later chapter. Don't worry; the process is almost as easy.
