Created
September 3, 2013 15:40
-
-
Save star-szr/6425587 to your computer and use it in GitHub Desktop.
Drupal 8 bash functions
This file contains 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
# Clean up Drupal 8 installation and do a pull. | |
function cleand8() { | |
chmod u+w sites/default | |
git reset --hard | |
git checkout 8.x | |
git pull | |
sudo rm -rf sites/default/files/php | |
drush cc all | |
} | |
# Reinstall Drupal 8 via Drush. | |
function sid8() { | |
drush si --account-pass=password | |
drush en -y simpletest devel devel_generate | |
drush dis -y overlay | |
sudo rm -rf sites/default/files/php | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment