在我的配置文件中
EXCLUDE = ./fileToBeExcluded
并且它工作正常,但如果我想要排除更多文件,则没有办法。 我试过了:
EXCLUDE = ./fileToBeExcluded
./fileToBeExcluded2
EXCLUDE = ./fileToBeExcluded,
./fileToBeExcluded2
EXCLUDE = ./fileToBeExcluded
EXCLUDE = ./fileToBeExcluded2
有什么建议吗? 谢谢
答案 0 :(得分:0)
找到解决方案。我不得不使用backSlash" \"
EXCLUDE = ./fileToBeExcluded \
./fileToBeExcluded2
并且有效。