tags:

views:

337

answers:

1

Is there a way to ask Perforce to list all changelists submitted by a particular user in a specific time frame ?

p4 changes @2001/04/01,@now This lists all the changes submitted from 1st April till now.

p4 changes -m 5 -u edk Shows the last five submitted changelists from user edk.

Is there a way to combine both the above for a particular directory ?

+4  A: 

You can combine them like so:

p4 changes -m 5 -u edk -s submitted @2001/04/01,@now

To specify a directory:

p4 changes -m 5 -u edk -s submitted //depot/path/to/directory/...@2001/04/01,@now

joshdick
Would there also be a way to find out if a particular changelist has been integrated to another branch as well ?
vivekian2
From the documentation:The -i flag also includes any changelists integrated into thespecified files.
joshdick