Changes between Version 9 and Version 10 of InstallDrupal


Ignore:
Timestamp:
Jan 22, 2013, 2:36:52 AM (11 years ago)
Author:
brevilo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstallDrupal

    v9 v10  
    6262{{{
    6363$ drush fl
    64 $ drush en [feature...]
     64$ drush en <feature> [<feature>...]
    6565}}}
    6666This 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):
     
    6868$ drush fr-all
    6969}}}
    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.
     70This 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
     72We 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}}}
    7177
    7278== Manual Changes Required ==