我正在尝试从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有什么想法吗?
发布于 2013-02-27 06:27:58
试着这样写命令:
p4 changes -m 5 //depot/main/project/... > result.txt您犯的主要错误是没有将输出重定向到您的result.txt文件中,因此p4 changes尝试将result.txt解释为版本化文件,但如果没有有效的客户端规范(也称为工作区),它就无法解析它的仓库路径。
https://stackoverflow.com/questions/15100321
复制相似问题