2

示例:我在config.rb下面有一个 -filesrc/files/config.rb

如何排除 docpad 推送的这个文件out/config.rb

例如 jekyll 中的配置文件是否有排除命令?exclude: makelive.sh, ideas.txt, newpost.rb

4

1 回答 1

4

您可以使用各种ignore* 配置选项来完成您的需要。

表面上看,ignorePaths如果您只有一两个不想包含的文件,这似乎是最简单的解决方案,但实际上,它似乎是基于绝对路径操作的,这很不方便。所以我可能会使用该ignoreCustomPatterns选项来指定与您不想复制的文件匹配的正则表达式。

# Ignore Custom Patterns
# Can be set to a regex of custom patterns to ignore from the scanning process
ignoreCustomPatterns: /config.rb/
于 2013-10-24T17:53:20.757 回答