Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What Perforce p4 command lists the files changed in a given changelist? Note that I want only the names of the files that have changed and not the content differences.

share|improve this question

2 Answers

up vote 8 down vote accepted
p4 describe -s <changelist>

Example output:

p4 describe -s 42

Change 42 by someUser@someClient on 2010/08/17 18:43:35

        updated foo.txt

Affected files ...

... //foo.txt#2 edit
share|improve this answer

See the documentation for describe. You probably want:

p4 describe changenum

But you may also find these useful:

To show the files in a pending changelist:

p4 opened -c changenum

To suppress the diffs in p4 describe:

p4 describe -s changenum
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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