What does the jekyll command:
$ bundle exec jekyll serve --incremental
mean and how can I make it rebuild only those pages that I have modified/ updated rather than building the entire site?
bundle exec
looks for a Gemfile in your current directory, you should run that in Jekyll root folder.
If you don't have a Gemfile then you can create one with bundle init
and adding the gems you need.
jekyll serve
serves your site locally for development purposes.
Finally, the --incremental
flag does what you need:
only re-builds posts and pages that have changed
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With