如何从 Perforce 中排除所有 .DS_Store 文件?
How do I exclude all .DS_Store files from Perforce?
我使用 Perforce 中的图形界面为 .DS_Store 文件设置排除项:
它在工作区中使这个:
-//depot/*.DS_Store //almo_SilentMac/*.DS_Store
但是当我执行 Reconcile Offline Work 时,它仍然会出现 .DS_Store 文件。我做错了什么?
“*”通配符仅匹配不包括目录分隔符的单个字符串,因此要匹配文件夹树中任何级别名为 .DS_Store 的文件,请使用“...”通配符相反,如:
-//depot/.../.DS_Store //almo_SilentMac/.../.DS_Store
或者,也可能更简单,考虑使用 P4IGNORE 文件:http://www.perforce.com/perforce/doc.current/manuals/cmdref/P4IGNORE.html
我使用 Perforce 中的图形界面为 .DS_Store 文件设置排除项:
它在工作区中使这个:
-//depot/*.DS_Store //almo_SilentMac/*.DS_Store
但是当我执行 Reconcile Offline Work 时,它仍然会出现 .DS_Store 文件。我做错了什么?
“*”通配符仅匹配不包括目录分隔符的单个字符串,因此要匹配文件夹树中任何级别名为 .DS_Store 的文件,请使用“...”通配符相反,如:
-//depot/.../.DS_Store //almo_SilentMac/.../.DS_Store
或者,也可能更简单,考虑使用 P4IGNORE 文件:http://www.perforce.com/perforce/doc.current/manuals/cmdref/P4IGNORE.html