1

我有两个领域:

//depot/path/to/area1/...
//depot/another/path/to/area2/...

我在这两个领域工作,需要来回复制这两个领域的文件。我假设一个

p4 copy //depot/path/to/area1/... //depot/another/path/to/area2

会这样做,但是当我在第二个区域“p4 同步”时,没有任何下载。我签入 p4v,但在更改列表中看不到任何内容。

有谁知道如何做到这一点?

*是的,我知道我不应该在两个区域拥有相同的文件,但这不在我的控制范围内。

4

1 回答 1

7

为了集成/复制文件/从 //depot/path/to/area1/... 到 //depot/another/path/to/area2/... 您需要调用:

p4 copy //depot/path/to/area1/... //depot/another/path/to/area2/...
p4 submit

您需要在其客户端视图中具有目标路径的客户端中执行此操作。目标路径是 //depot/another/path/to/area2/...

于 2012-09-26T08:55:50.590 回答