From 8d5b5fa4dc839519ed0b5c2203e6b7925a6b0caa Mon Sep 17 00:00:00 2001 From: strangehill Date: Thu, 18 Jul 2019 17:13:59 +0800 Subject: [PATCH] Update .gitignore snippet in tutorial (#7748) --- docs/_tutorials/using-jekyll-with-bundler.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/docs/_tutorials/using-jekyll-with-bundler.md b/docs/_tutorials/using-jekyll-with-bundler.md index 3aa34bbb..0acbad28 100644 --- a/docs/_tutorials/using-jekyll-with-bundler.md +++ b/docs/_tutorials/using-jekyll-with-bundler.md @@ -95,12 +95,14 @@ in. You can use this `.gitignore` to get started, if you want. **.gitignore** ``` -# Ignore folders generated by Bundler -vendor -.bundle +# Ignore metadata generated by Jekyll +_site/ +.sass-cache/ +.jekyll-cache/ +.jekyll-metadata -# Ignore folders generated by Jekyll -.sass-cache -_site +# Ignore folders generated by Bundler +.bundle/ +vendor/ ```