1
0
mirror of https://github.com/github/gitignore synced 2024-06-02 02:38:12 +02:00

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.
This commit is contained in:
Bill Raymond 2021-12-14 16:47:37 -08:00 committed by GitHub
parent e89e043904
commit 5a94995d0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,3 +2,6 @@ _site/
.sass-cache/ .sass-cache/
.jekyll-cache/ .jekyll-cache/
.jekyll-metadata .jekyll-metadata
# Ignore folders generated by Bundler
.bundle/
vendor/