vote up 1 vote down star

I wish to submit a changelist with multiple filespecs, e.g. ...this... ...file.h ...theother.... Perforce won't let me. I could create a changelist from a file but I do want a chance to review the files and enter the comment. This is for a command-line solution.

flag

60% accept rate

2 Answers

vote up 2 vote down check

You can create a pending changelist, then move all the files you want into that, before submitting it. Even from the command-line, although I find p4V easier to use for this functionality.

http://www.perforce.com/perforce/doc.current/manuals/cmdref/change.html#1040665

p4 change

to create a pending changelist.

p4 reopen

to move files into the pending changelist.

link|flag
Unfortunately p4 change opens up the editor. – Brian Carlton Oct 15 at 19:15
1  
p4 change -o and p4 change -i would be required in order to avoid using an editor - – Douglas Leeder Oct 16 at 15:10
vote up 1 vote down

Type

p4 submit

If your P4EDITOR is vim, then you will get a vim edit window. Goto command mode and select all the lines after the line "Files:" by typing

v followed by PgDown until you're done selecting all the files

Then do

:g!/.*pattern1.*#/d

If you have multiple patterns like this,

:g!/.*pattern1.*#\|.*pattern2.*#\|.*pattern3.*#/d etc...

Hope this helps!

link|flag
I am looking for a command line implementation for use in scripts. – Brian Carlton Oct 15 at 13:08

Your Answer

Get an OpenID
or

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