Is there a way to perform an integration from one codeline to another
(that
are not branched from each other) using a changelist spec. For example,
Ive
got change 1080 that consists of changes to five files, I want to
integrate
this to another codeline using the changelist, so I want to do something
like this
p4 integrate file://depot/development/... at 1090
file://depot/release/...
but I want it to refer to just the files that were part of the changelist,
not the state of the depot at changelist 1090 (which is what the above
command does).
Try
p4 integrate //depot/development/... at 1090, at 1090 //depot/release/...
Bolek