Update .gitignore snippet in tutorial (#7748)

This commit is contained in:
strangehill 2019-07-18 17:13:59 +08:00 committed by Ashwin Maroli
parent 7096885e98
commit 8d5b5fa4dc
1 changed files with 8 additions and 6 deletions

View File

@ -95,12 +95,14 @@ in. You can use this `.gitignore` to get started, if you want.
**.gitignore** **.gitignore**
``` ```
# Ignore folders generated by Bundler # Ignore metadata generated by Jekyll
vendor _site/
.bundle .sass-cache/
.jekyll-cache/
.jekyll-metadata
# Ignore folders generated by Jekyll # Ignore folders generated by Bundler
.sass-cache .bundle/
_site vendor/
``` ```