P4V:查找影响给定工作区的最新变更列表?
是否有命令行方法来查找影响给定工作区的最新变更列表?这可以在 GUI 中通过(在工作区选项卡中)右键单击工作区树的尖端,然后转到“文件夹历史记录”并按时间戳排序来完成。
非常感谢您,我非常感谢您的回复。
Is there a command-line way to find the most recent changelist that affects a given workspace? This can be done in the GUI by (in the workspaces tab), right-clicking the tip of the workspace tree, then going to "Folder History", and sorting by timestamp.
Thank you much and I greatly appreciate any responses.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
p4更改
命令(p4changes -t -l -c YOUR_WORKSPACE -m 1 -s Submitted //depot/project/...
几乎任何可以在 P4V 中完成的事情都可以通过命令行来实现(这是P4 最好的一点是,首先是命令行,gui 其次)。
You can use the
p4 changes
command (usage).p4 changes -t -l -c YOUR_WORKSPACE -m 1 -s submitted //depot/project/...
Almost anything that can be done in P4V is achievable via the commandline (that is one of the best things about P4 is that is commandline first, gui second).
对此问题的一个好的答案取决于“影响给定工作区的更改列表”的含义。您的意思是:
p4changes-m1@workspace
)p4 更改 -m1 //workspace/...
- 这是与您描述的 P4V 操作相对应的操作)A good answer to this depends on what you mean by "changelist that affects a given workspace". Do you mean:
p4 changes -m1 @workspace
)p4 changes -m1 //workspace/...
-- this is the one that corresponds to the P4V operation you describe)