How to recreate a feature using drush cli (update a feature) ?
Enable a Features
drush en feature_name
Revert a feature
drush fr freture_name
Revert all features
drush fra -y
#OR Also
drush fr-all
Recreate a Feature (Update a Feature)
drush fu freture_name
Disable a feature
To disable a feature, visit the Feature administration page (/admin/structure/features), deselect the appropriate checkbox and Save settings.
CAUTION : Disabling the feature module is supposed to also disable all the functionality that was defined by it. That is, remove node types that were created by it, etc...
Comments