Last active
March 19, 2016 19:49
-
-
Save crittermike/4ea98d07bc7f2a688529 to your computer and use it in GitHub Desktop.
Drupal Console alternatives for common Drush commands
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Clear caches | |
| - Drush: drush cc all | |
| - Console: drupal cache:rebuild (cr) all | |
| Install a module | |
| - Drush: drush en modulename | |
| - Console: drupal module:install modulename | |
| Uninstall a module | |
| - Drush: drush dis modulename | |
| - Console: drupal module:uninstall modulename | |
| Install the site | |
| - Drush: drush si profilename | |
| - Console: drupal si profilename | |
| Drop the DB | |
| - Drush: drush sql-drop | |
| - Console: drupal database:table:drop | |
| Open a DB prompt | |
| - Drush: drush sqlc | |
| - Console: drupal database:connect | |
| Dump the site DB | |
| - Drush: drush sql-dump | |
| - Console: drupal database:dump | |
| Generate one-time login link for user 1 | |
| - Drush: drush uli 1 | |
| - Console: drupal user:login:url (uslu) 1 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment