如何在 Perforce 中获取特定作者自特定日期以来所做的所有编辑的差异?

发布于 2025-01-06 18:51:58 字数 219 浏览 0 评论 0原文

在 Perforce 中,我试图找出对特定长时间运行任务的代码进行了哪些编辑。我知道所有的更改都是由同一位作者做出的,并且他几乎总是在从事这项特定的任务。

鉴于此,我试图找到一种方法来对自特定日期以来他对代码所做的所有编辑进行比较。请问我该怎么办?

(另一种方法可能是获得在多个指定变更列表中所做的所有更改的统一差异 - 然后我可以坐下来手动指定所有变更列表,并在最后得到一个合理的结果。)

In Perforce, I'm trying to find out what edits were made to the code for a particular long-running task. I know that all the changes were made by the same author, and that he was almost invariably working on this particular task.

Given that, I'm trying to find a way to do a diff of all the edits he has made to the code since a particular date. How would I go about it please?

(An alternative might be a way to get a unified diff of all the changes made in a number of specified changelists - I could then sit down and specify all the changelists manually and get a sensible result at the end of it.)

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

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

发布评论

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

评论(1

会发光的星星闪亮亮i 2025-01-13 18:51:58

类似这样的事情应该可以做到:

p4 changes -u bruno | awk '{print $2}' | xargs p4 describe

Something along the lines of this ought to do it:

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