I am newbie to perforce. I am trying to integrate branch br#1 into branch br#2
lets say this is an example code in //br#1
int foo{
blah blah;
}
//br#2
int foo{
blah blah
}
I want to integrate them as such //br#3
int foo_branch1{
blah blah;
}
int foo_branch2{
blah blah
}
whats the best way of doing that ?
Typically when integrating you're operating on two different branches rather than two different revisions of a single file, and the goal is to merge them rather than append them -- what you're describing with br#1 and br#2 is a use case I haven't seen before.
Normally to create a branch you would do something like:
This would create a new directory "branch2" with a set of files at #1, each an identical copy of the head revision in "branch1". Each branch is its own directory of files, with its own version numbering, and you can work on them completely independently. Then after making changes on both branch1 and branch2 you could do:
The "integrate" and "resolve" commands would merge the changes you made on branch1 into the changes you made on branch2.
Since you're simply looking to concatenate the revisions of a single file together, though, this is a very simple matter of shell scripting -- I'm following the names and contents used in your example (note that "//br" is not a valid file path in Perforce):
The "p4 print" command fetches the specified revision from the depot, and I'm using "sed" to make the edit (foo -> foo_branchN) automatically before appending it to the workspace file. At the end the concatenated file is submitted, making it #3.