2

我有两个 perforce 客户端(client-a,client-b),每个都包含大约 40 个文件规范。它们是相似的,但每个客户端都有几个不包含在另一个客户端中的文件规范。我想找出这些客户端规格之间的差异。理想情况下,输出看起来像这样......

File specs in client-a and not in client-b:
//depot/dirA/...
//depot/dirG/...

File specs in client-b and not in client-a:
//depot/dirD/...
//depot/dirX/...

如果我能做类似的事情就好了p4 diff -c client-a -c client-b,但是在阅读了 and 的文档之后p4 diffp4 diff2这似乎是不可能的。我可以求助于编写 awk 脚本,但认为可能有更好的解决方案。有没有简单的方法来实现这一点?

4

1 回答 1

3

您可以创建一个规范库。完成此操作后,您将能够像比较源文件一样比较客户端规格(以及其他内容)。

替代文字 http://img192.imageshack.us/img192/448/specdepot.png

于 2010-03-03T18:22:26.487 回答