Include drupal config commands in the local dev readme and drupal upgrade instructions
When working locally you want to check the status of the system after pulling the prod database
drush config:status
When making changes locally that you want to persist to other environments run
drush config:export
git commit -m "Config I changed locally"
When running and drupal core or contrib updates that produce config changes persist those to the config files so they will be pushed to other environments.
Include drupal config commands in the local dev readme and drupal upgrade instructions
When working locally you want to check the status of the system after pulling the prod database drush config:status When making changes locally that you want to persist to other environments run drush config:export git commit -m "Config I changed locally"
When running and drupal core or contrib updates that produce config changes persist those to the config files so they will be pushed to other environments.
drush config:export git add . git commit -m "Add my config updates."