GitBook将读取.gitignore、.bookignore和.ignore文件,以获取要忽略的文件和文件夹的列表。 被忽略的文件不会被上传到版本中,这些文件中的格式遵循与.gitignore相同的约定:
.gitignore
.bookignore
.ignore
#这是一行注释 #忽略文件 test.md test.md #忽略所有 test 命名的文件 test.* #忽略所有 html 类型的文件 *.html #忽略目录 test 中的所有内容 test/*