Perforce: How to integrate Upto of a specific Changelist from one branch to another

I am trying to take all our recent code from our development branch to free the branch to a specific list of changes (say CL No. 1234). How can i achieve this?

I know what I can do p4 describe 1234to see the timestamp, and then do it p4 integ //path/to/dev/branch/...@timestamp //path/to/release/branch/.... But is there a more elegant way to do this?

+3
source share
1 answer

Integrate the dev branch (source) into your release branch (target) in the change list, rather than integrate with the timestamp. Since you want to integrate through CL 1234, you must run the following command:

p4 integrate //path/to/dev/branch/...@1234 //path/to/release/branch/...

dev ( , CL 1234) release.

+3

All Articles