From 5a94995d0d15a44bdb1007eabd958f024ee13f5e Mon Sep 17 00:00:00 2001 From: Bill Raymond Date: Tue, 14 Dec 2021 16:47:37 -0800 Subject: [PATCH] Ignore .bundle and vendor per official Jekyll documentation Per the [Jekyll documentation](https://jekyllrb.com/tutorials/using-jekyll-with-bundler/), you should add the `vendor/` and `.bundle/` paths to the .gitignore file, so you are not managing all dependencies within your repo. --- Jekyll.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Jekyll.gitignore b/Jekyll.gitignore index 2ca86829..74a9223a 100644 --- a/Jekyll.gitignore +++ b/Jekyll.gitignore @@ -2,3 +2,6 @@ _site/ .sass-cache/ .jekyll-cache/ .jekyll-metadata +# Ignore folders generated by Bundler +.bundle/ +vendor/