什么 Perforce (p4) 命令列出给定更改列表中的文件?

发布于 2024-09-14 13:08:35 字数 79 浏览 2 评论 0原文

什么 Perforce p4 命令列出了给定更改列表中更改的文件?请注意,我只想要已更改的文件的名称,而不是内容差异。

What Perforce p4 command lists the files changed in a given changelist? Note that I want only the names of the files that have changed and not the content differences.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

享受孤独 2024-09-21 13:08:35
p4 describe -s <changelist>

输出示例:

p4 describe -s 42

Change 42 by someUser@someClient on 2010/08/17 18:43:35

        updated foo.txt

Affected files ...

... //foo.txt#2 edit
p4 describe -s <changelist>

Example output:

p4 describe -s 42

Change 42 by someUser@someClient on 2010/08/17 18:43:35

        updated foo.txt

Affected files ...

... //foo.txt#2 edit
长发绾君心 2024-09-21 13:08:35

请参阅文档描述 。您可能想要:

p4 describe changenum

但您也可能会发现这些很有用:

显示挂起的更改列表中的文件:

p4 opened -c changenum

抑制 p4describe 中的差异:

p4 describe -s changenum

See the documentation for describe. You probably want:

p4 describe changenum

But you may also find these useful:

To show the files in a pending changelist:

p4 opened -c changenum

To suppress the diffs in p4 describe:

p4 describe -s changenum
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文