如何从 Jekyll _site 文件夹中删除意外文件
How to remove accidental files from the Jekyll _site folder
所以我最近才开始使用 Jekyll,完全不知道自己在做什么。我以某种方式设法将两个文件放入 _site
目录,现在它们就在那里。我可以删除这些文件,但是当我 运行
bundle exec jekyll build
建站,文件回来了。
我的问题是,如何从 _site
目录中删除这两个文件?
这是 _site
目录的树。我要删除的文件是 sync.py
和 README.md
.
.
├── 2020
│ └── 04
│ └── 24
│ └── get-system-platform-python.html
├── 404.html
├── README.md
├── about
│ └── index.html
├── assets
│ ├── css
│ │ └── style.css
│ └── images
│ ├── bkg.png
│ ├── blacktocat.png
│ ├── bullet.png
│ └── stack.png
├── favicon.ico
├── feed.xml
├── index.html
├── jekyll
│ └── update
│ └── 2020
│ └── 04
│ └── 24
│ └── welcome-to-jekyll.html
└── sync.py
Jekyll 的东西在这个 Github 仓库中:https://github.com/noahbroyles/site-genny
我不确定这是否有帮助,因为我在 .gitignore
.
中有 _site
目录
甚至可以删除这些文件吗?
欢迎任何帮助!
只需将 sync.py 添加到 README.md [= 中的排除列表21=].
exclude:
- sync.py
- README.md
所以我最近才开始使用 Jekyll,完全不知道自己在做什么。我以某种方式设法将两个文件放入 _site
目录,现在它们就在那里。我可以删除这些文件,但是当我 运行
bundle exec jekyll build
建站,文件回来了。
我的问题是,如何从 _site
目录中删除这两个文件?
这是 _site
目录的树。我要删除的文件是 sync.py
和 README.md
.
.
├── 2020
│ └── 04
│ └── 24
│ └── get-system-platform-python.html
├── 404.html
├── README.md
├── about
│ └── index.html
├── assets
│ ├── css
│ │ └── style.css
│ └── images
│ ├── bkg.png
│ ├── blacktocat.png
│ ├── bullet.png
│ └── stack.png
├── favicon.ico
├── feed.xml
├── index.html
├── jekyll
│ └── update
│ └── 2020
│ └── 04
│ └── 24
│ └── welcome-to-jekyll.html
└── sync.py
Jekyll 的东西在这个 Github 仓库中:https://github.com/noahbroyles/site-genny
我不确定这是否有帮助,因为我在 .gitignore
.
_site
目录
甚至可以删除这些文件吗?
欢迎任何帮助!
只需将 sync.py 添加到 README.md [= 中的排除列表21=].
exclude:
- sync.py
- README.md