Reputation: 25418
In perforce, how can I generate a report for the checkins made by certain users into a particular branch.
Upvotes: 0
Views: 120
Reputation: 16359
p4 changes -u username //path/to/branch/...
You'll need to run the command multiple times, once for each user of interest.
If you're just getting started in writing these sorts of scripts and tools on top of Perforce, you may want to pick your favorite scripting language, and start getting familiar with the Perforce extensions for programming in that particular scripting language: http://www.perforce.com/perforce/doc.current/manuals/p4script/index.html
Upvotes: 2