diff --git a/site/_posts/2012-07-01-upgrading.md b/site/_posts/2012-07-01-upgrading.md index f4992a92..7bd04397 100644 --- a/site/_posts/2012-07-01-upgrading.md +++ b/site/_posts/2012-07-01-upgrading.md @@ -28,12 +28,14 @@ Simply add the `--config` flag to the `jekyll` command, followed by the path to one or more config files.
-
The `--config` flag overrides your `_config.yml` file
+
The `--config` explicitly specifies your configuration file

If you use the `--config` flag, Jekyll will ignore your `_config.yml` file. Want to merge a custom configuration with the normal configuration? No problem. Jekyll will accept more than one custom config - file via the command line. Simply pass the path to both files with the latter - file overriding the former.

+ file via the command line. Config files cascade from right to left, such + that if I run `jekyll serve --config `--config _config.yml,_config-dev.yml`, + the values in the config files on the right (`_config-dev.yml`) overwrite + those on the left (`_config.yml`) when both contain the same key. ,

#### As a result, the following command line flags are now deprecated: