Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Perforce: Branch from a specific changelist perforce

How do you branch from a specific changelist in perforce? That is, if main is my main codeline, and I want to create a branch b off of main from a changelist n, what is the syntax to do this?

I've tried:
//depot/main/...@n //users/me/sandbox/...
in my branch spec, but get errors.

And
p4 integrate -b branch_b @n
doesn't seem to work either.

Thanks in advance.
-David

like image 270
DSaracino Avatar asked Sep 24 '10 16:09

DSaracino


2 Answers

Based on the highly scientific method of attempting the same action in p4v and then copying and pasting out of the log, the following snippet should do what you need, provided you have your branch specification branch_b defined correctly:

p4 integrate -o -b branch_b -s //depot/main/...@n
like image 60
ninesided Avatar answered Sep 20 '22 14:09

ninesided


The problem with the original command is that the changelist has to be specified as a range. It's an odd quirk but there it is. The correct command is:

p4 integ //depot/main/...@1,@n //users/me/sandbox/...

like image 23
Benjamin Damm Avatar answered Sep 23 '22 14:09

Benjamin Damm