P4V:查找影响给定工作区的最新变更列表?

发布于 2024-12-05 12:56:42 字数 116 浏览 1 评论 0原文

是否有命令行方法来查找影响给定工作区的最新变更列表?这可以在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

墨离汐 2024-12-12 12:56:42

您可以使用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).

始终不够 2024-12-12 12:56:42

对此问题的一个好的答案取决于“影响给定工作区的更改列表”的含义。您的意思是:

  1. 修改给定工作区定义的变更列表吗? (没有这样的事情。)
  2. 其内容当前已同步到工作区的变更列表? (p4changes-m1@workspace)
  3. 其内容可以同步到工作区的变更列表? (p4 更改 -m1 //workspace/... - 这是与您描述的 P4V 操作相对应的操作)

A good answer to this depends on what you mean by "changelist that affects a given workspace". Do you mean:

  1. Changelist that modifies a given workspace definition? (There's no such thing.)
  2. Changelist whose contents are currently synced to the workspace? (p4 changes -m1 @workspace)
  3. Changelist whose contents COULD be synced to the workspace? (p4 changes -m1 //workspace/... -- this is the one that corresponds to the P4V operation you describe)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文