diff --git a/docs/_docs/quickstart.md b/docs/_docs/quickstart.md
index e84f87be..b21d084d 100644
--- a/docs/_docs/quickstart.md
+++ b/docs/_docs/quickstart.md
@@ -5,6 +5,7 @@ permalink: /docs/quickstart/
If you already have a full [Ruby](https://www.ruby-lang.org/en/downloads/) development environment with all headers and [RubyGems](https://rubygems.org/pages/download) installed (see Jekyll's [requirements](/docs/installation/#requirements/)), you can create a new Jekyll site by doing the following:
+
```sh
# Install Jekyll and Bundler gems through RubyGems
~ $ gem install jekyll bundler
@@ -41,6 +42,10 @@ If you encounter any unexpected errors during the above, please refer to the alr
* By default, the Jekyll site installed by `jekyll new` uses a gem-based theme called [Minima](https://github.com/jekyll/minima). With [gem-based themes](../themes), some of the directories and files are stored in the theme-gem, hidden from your immediate view.
* To learn about other parameters you can include with `jekyll new`, type `jekyll new --help`.
+When in doubt, use the help
command to remind you of all available options and usage, it also works with the new
, build
and serve
subcommands, e.g. jekyll help new
or jekyll help build
.
+{: .info }
+
## Next steps
Building a Jekyll site with the default theme is just the first step. The real magic happens when you start creating blog posts, using the front matter to control templates and layouts, and taking advantage of all the awesome configuration options Jekyll makes available.
+
diff --git a/docs/_docs/usage.md b/docs/_docs/usage.md
index c8860373..f4123aed 100644
--- a/docs/_docs/usage.md
+++ b/docs/_docs/usage.md
@@ -96,5 +96,12 @@ $ jekyll build --source _source --destination _deploy
For more about the possible configuration options, see the
[configuration](../configuration/) page.
+
+ The help
command is always here to remind you of all available options and usage, and also works with the build
, serve
and new
subcommands, e.g jekyll help new
or jekyll help build
.
+