vote up 2 vote down star

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 ?

flag

1  
Actually, neither of these command lines restricts to submitted changelists. That is, you can get pending changelists as well with those commands. To restrict to submitted changelists add -s submitted. – Laurence Gonsalves May 26 at 17:24
@Laurence-Gonsalves Yes forgot to add -s submitted. – vivekian2 May 26 at 17:34

1 Answer

vote up 4 vote down check

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

link|flag
Would there also be a way to find out if a particular changelist has been integrated to another branch as well ? – vivekian2 May 26 at 17:34
From the documentation: The -i flag also includes any changelists integrated into the specified files. – joshdick May 26 at 19:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.