Changes between Version 9 and Version 10 of InstallDrupal
- Timestamp:
- Jan 22, 2013, 2:36:52 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
InstallDrupal
v9 v10 62 62 {{{ 63 63 $ drush fl 64 $ drush en [feature...]64 $ drush en <feature> [<feature>...] 65 65 }}} 66 66 This process will automatically determine which additional features or modules are required and prompt for installation thereof. In some cases, it may be necessary to then force an update from file for all features to revert any "overrides" that exist (i.e. if any functionality provided by a feature already existed in the site database, it will need to be "reverted" to what is provided by the feature on the filesystem): … … 68 68 $ drush fr-all 69 69 }}} 70 This command will ensure that all changes in code are applied to the site database. Similarly, when feature code is changed in git, a specific feature or set of features can be updated with the drush fr [feature] command. 70 This command will ensure that all changes in code are applied to the site database. Similarly, when feature code is changed in git, a specific feature or set of features can be updated with the drush fr <feature> command. 71 72 We recommend you also enable the diff module as it enables you to display local feature overrides: 73 {{{ 74 $ drush en diff 75 $ drush fd <feature> 76 }}} 71 77 72 78 == Manual Changes Required ==