我有两个方面:
//depot/path/to/area1/...
//depot/another/path/to/area2/...我在这两个领域都工作,需要来回复制这两个领域的文件。我假设了一个
p4 copy //depot/path/to/area1/... //depot/another/path/to/area2我会这样做,但当我"p4同步“在第二个区域没有下载。我签入了p4v,但在更改列表中没有看到任何内容。
有人知道怎么做吗?
*是的,我知道我不应该在两个区域拥有相同的文件,但这不是我所能控制的。
发布于 2012-09-26 16:55:51
为了将文件/更改从//depot/path/集成/复制到/area1/...到//depot/另一个/path/到/area2/...您需要调用:
p4 copy //depot/path/to/area1/... //depot/another/path/to/area2/...
p4 submit您需要在客户端视图中包含targetpath的客户端中执行此操作。目标路径是//depot/another/path/to/area2/...
https://stackoverflow.com/questions/12592613
复制相似问题