使用“移动/添加”操作确定 Perforce 文件的来源。
我正在编写一个处理 Perforce 变更列表内容的脚本。更改列表中的每个文件将根据与其关联的操作进行不同的处理。
我已经处理了编辑
、添加
、集成
和删除
操作。到目前为止,一切都很好。但是,对于移动/添加
和移动/删除
,我需要一种可靠的方法来分别确定文件的来源和目的地。我浏览了 p4 fstat
的文档,但没有发现任何有用的东西。
有什么想法吗?谢谢。
I'm working on a script that processes the contents of a Perforce changelist. Each file in the changelist will be handled differently depending on the action associated with it.
I've already tackled the actions edit
, add
, integrate
, and delete
. So far, so good. However, for move/add
and move/delete
, I need a reliable means of determining the file's origin and destination, respectively. I've looked through the documentation for p4 fstat
and haven't turned up anything of use.
Any ideas? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 p4 文件日志。它将为您提供动作的历史记录。 -ztag 输出可能对您的目的有用,也可能没有用。
Look at p4 filelog . It will give you the history of the moves. The -ztag output might or might not be useful for your purposes.