Merge pull request #5168 from jekyll/change-quickstart

Merge pull request 5168
This commit is contained in:
jekyllbot 2016-08-01 17:36:40 -07:00 committed by GitHub
commit 896a502129
2 changed files with 8 additions and 2 deletions

View File

@ -10,7 +10,8 @@ For the impatient, here's how to get a boilerplate Jekyll site up and running.
~ $ gem install jekyll ~ $ gem install jekyll
~ $ jekyll new myblog ~ $ jekyll new myblog
~ $ cd myblog ~ $ cd myblog
~/myblog $ jekyll serve ~/myblog $ bundle install
~/myblog $ bundle exec jekyll serve
# => Now browse to http://localhost:4000 # => Now browse to http://localhost:4000
{% endhighlight %} {% endhighlight %}

View File

@ -57,10 +57,15 @@ overview: true
<span class="prompt">$</span> <span class="prompt">$</span>
<span class="command">cd my-awesome-site</span> <span class="command">cd my-awesome-site</span>
</p> </p>
<p class="line">
<span class="path">~</span>
<span class="prompt">$</span>
<span class="command">bundle install</span>
</p>
<p class="line"> <p class="line">
<span class="path">~/my-awesome-site</span> <span class="path">~/my-awesome-site</span>
<span class="prompt">$</span> <span class="prompt">$</span>
<span class="command">jekyll serve</span> <span class="command">bundle exec jekyll serve</span>
</p> </p>
<p class="line"> <p class="line">
<span class="output"># => Now browse to http://localhost:4000</span> <span class="output"># => Now browse to http://localhost:4000</span>