Last active
March 3, 2017 18:23
-
-
Save jahid32/7c8892e561023ca5af95d1c92f5883ce to your computer and use it in GitHub Desktop.
Drush alternative Install
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
# Install a specific version of Drush, e.g. Drush 7.1.0 | |
`<composer global require drush/drush:7.1.0>` | |
# Install master branch as a git clone. Great for contributing back to Drush project. | |
`<composer global require drush/drush:dev-master --prefer-source>` | |
Uninstall with : composer global remove drush/drush | |
Install latest stable Drush: composer global require drush/drush. | |
Verify that Drush works: drush status |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment