mirror of
https://github.com/codeguy/php-the-right-way.git
synced 2025-08-14 01:33:58 +02:00
Merge pull request #640 from igorsantos07/jekyll-install-improvements
Adding more precise Jekyll instructions
This commit is contained in:
@@ -62,7 +62,16 @@ included in the project:
|
|||||||
git checkout -b <topic-branch-name>
|
git checkout -b <topic-branch-name>
|
||||||
```
|
```
|
||||||
|
|
||||||
4. Install the [Jekyll](https://github.com/jekyll/jekyll/) gem to preview locally.
|
4. Install the [Jekyll](https://github.com/jekyll/jekyll/) gem and dependencies to preview locally:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Install the needed gems through Bundler
|
||||||
|
bundle install
|
||||||
|
# Build and open _site/index.html in your browser...
|
||||||
|
jekyll build [--watch]
|
||||||
|
# ...or run a local server to easily develop:
|
||||||
|
jekyll serve
|
||||||
|
```
|
||||||
|
|
||||||
5. Commit your changes in logical chunks. Please adhere to these [git commit
|
5. Commit your changes in logical chunks. Please adhere to these [git commit
|
||||||
message guidelines](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html)
|
message guidelines](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html)
|
||||||
|
@@ -124,6 +124,3 @@ PLATFORMS
|
|||||||
|
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
github-pages
|
github-pages
|
||||||
|
|
||||||
BUNDLED WITH
|
|
||||||
1.10.6
|
|
||||||
|
Reference in New Issue
Block a user