]> source.dussan.org Git - gitignore.git/commitdiff
Ignore .bundle and vendor per official Jekyll documentation 3925/head
authorBill Raymond <bill.raymond@cambermast.com>
Wed, 15 Dec 2021 00:47:37 +0000 (16:47 -0800)
committerGitHub <noreply@github.com>
Wed, 15 Dec 2021 00:47:37 +0000 (16:47 -0800)
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

index 2ca868298ced3ff66aa1a7a42a23c3360d11ef41..74a9223a450d467a8067d8e03acc241a3dd8d963 100644 (file)
@@ -2,3 +2,6 @@ _site/
 .sass-cache/
 .jekyll-cache/
 .jekyll-metadata
+# Ignore folders generated by Bundler
+.bundle/
+vendor/