1

也就是说,对于给定的源文件foo.c,我如何确定它上次被任何人更新的时间?

4

1 回答 1

3

使用以下内容:

p4 filelog -s -m1 file

解释:

  • file是相关文件的本地路径或仓库路径
  • -m1将输出限制为文件的最新版本
  • -s指定您想要缩短的输出

例子:

p4 filelog -s -m1 foo.c
p4 filelog -s -m1 /path/on/disk/to/foo.c
p4 filelog -s -m1 //depot/path/to/foo.c
于 2013-04-25T19:49:31.843 回答