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/ ```