How do I find the creator of a Perforce changelist?

眉间皱痕 提交于 2019-12-11 06:08:43

问题


I have two Perforce users A and B. A creates a numbered changelist 4711 and assigns this changelist to B with the command:

p4 change -U B 4711

User B can now verify that he owns changelist 4711 by calling:

p4 describe -s 4711

Is there any way for user B to find out that this changelist was created by A?

Regards

Lars


回答1:


Not via any Perforce client commands, no. This information isn't versioned in the metadata or the spec depot. Options for the admin include:

  1. Putting a trigger in place that will record this information somewhere.
  2. Searching the journal for modifications to the @db.change@ record.
  3. Searching the log file for uses of the p4 change -U command.


来源:https://stackoverflow.com/questions/43049511/how-do-i-find-the-creator-of-a-perforce-changelist

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!