3

我正在尝试从 perforce 中获得最后的更改

所以我去 perforce 文件夹并执行以下命令,正如我在教程中发现的那样

p4 changes -m 5 //depot/main//project/ result.txt // should save last five changes to result.txt 

但给了我以下错误

result.txt - must create client 'IM000001' to access local files // IM000001 is the name of my computer

有任何想法吗?

4

1 回答 1

6

尝试编写如下命令:

p4 changes -m 5 //depot/main/project/... > result.txt

您出错的主要问题是没有将输出重定向到您的 result.txt 文件中,因此 p4 更改尝试将 result.txt 解释为版本化文件,但是没有有效的客户端规范(又名工作区),它无法解析软件仓库路径为了它。

于 2013-02-26T22:27:57.753 回答