1

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

merula
  • 384
  • 2
  • 8

1 Answers1

2

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.
Samwise
  • 68,105
  • 3
  • 30
  • 44