You are here

mix

Drush commands

- drush status

Return information about your system.

- drush status --show-passwords

Return same info and show database password.

- drush cc

Clear a specific cache, or all drupal caches.

- drush archive-dump ( or drush ard )

Backup your code, files, and database into a single file.

- drush dl

Download Drupal core from drupal.org (Drupal core, modules, themes or profiles) and other sources.

- drush dl release name --destination="path/"

Download modules and place it into given directory.

How apply a patch?

First, you need to save the patch file into the directory of affected module.
Second, you need to move the command line prompt to this directory.
And then you need to use this command:

patch -p1 < advanced_help-invalid_argument_in_modules_alter-1086990-14.patch

If you want to test the patch before real apply, you can use the following --dry-run command:

patch -p1 --dry-run < advanced_help-invalid_argument_in_modules_alter-1086990-14.patch

Pages