用于检索影响特定文件的更改列表的 Perforce 命令

Perforce command to retrieve changelists affecting specific files

我正在尝试查找自特定日期(上次发布)以来被触及的所有 .properties 文件,以便 i18n 团队可以本地化任何 modified/new 字符串。我正在使用以下命令:

p4 changes @2015/11/01,@now //depot/cloud/sp-main/ui/....properties

但是,当我 运行 像这样时,我得到的所有更改都可以追溯到 2013 年,尽管它们只包含修改了 .properties 个文件的更改

如果我运行

p4 changes //depot/cloud/sp-main/ui/....properties  @2015/11/01,@now

然后我得到了自 2015 年 11 月 1 日以来的更改,但它给我的更改不包含 .properties 个文件。

如何将 filespec 与 @date 结合起来?

参考:

应该是

p4 changes //depot/cloud/sp-main/ui/....properties@2015/11/01,@now

文件规范包含文件路径和修订规范。 (后者见 p4 help revisions。)