假设我已将Perforce同步到更改列表,但将特定文件同步到更改列表中的特定修订:
$ p4 sync //depot/...@500 //depot/main/Foo/bar.txt@42
我可以运行什么命令告诉我Foo / Bar.txt会同步到与更改列表指定的版本不同的版本?
答案 0 :(得分:2)
p4 sync -n //depot/...@500
已经同步到@ 500的文件不会报告任何内容,但对于Foo / bar.txt,您将收到“更新”消息,因为它的版本不同。
另一种方法是:
p4 diff2 -q //depot/...@500 //depot/...#have
同样,这只是比较@ 500和你已经同步的东西;大多数文件都是相同的,并且没有输出报告,但Foo / bar.txt将显示为差异。