在mac上使用unison进行同步,我想忽略.DS_store
每个目录中的文件。在我的配置文件中,我放置了如“忽略的路径”部分所述的这一页。
ignore = Regex *.DS_Store
ignore = Regex *\.DS_Store
ignore = Regex "*.DS_Store"
但要么它不起作用,要么我有错误: line 33: Malformed pattern "Regex *.DS_Store"
。
答案1
您不需要为此使用正则表达式; Unison 在没有命令的情况下用于所有模式匹配的标准通配模式Regex
就可以了。
ignore = Name *.DS_Store