I have a specific change list, and from the command line I want to list all files that were a part of that change list. How do I do this?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
That’s the describe command. To describe a particular changelist, you want
p4 describe <changelist number>.Update:
If you only want the file names, you can use the files command with the -F option to override the output format:
p4 -Ztag -F "%depotFile%" files @=<changelist>See http://www.perforce.com/blog/130826/fun-formatting for more information about the -F option.