Reputation: 2298
Does perforce track the time and date at which changes were made to changelists? For example, updating the description text, or shelving different revisions of files into the changelist? And if so, can this information be accessed using p4 command line?
p4 changes -t
will include information about the creation time of the changelist, but not the update. p4 describe
doesn't seem to include any flags related to time. p4 fstat
can show time information about the files in a changelist, but not the changelist itself.
Upvotes: 1
Views: 339
Reputation: 71562
No, changelists are not versioned objects (not even in the spec depot, annoyingly). The only ways to track changes to changelists are to go under the covers, e.g.:
Upvotes: 1