top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What are all various ways supported by clearcase to merge two branches ?

+3 votes
301 views
What are all various ways supported by clearcase to merge two branches ?
posted May 27, 2015 by Vikram Singh

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

I have worked in clearcase and merged files/directories from one branch to another branch.
As per my knowledge, there are following two ways
1- By using views name (ct findmerge ./ -ftag VIEW-TAG -print )
2- By using branch name ( ct findmerge file-to-merge.cpp -fversions .../BugFix_branch_Y/LATEST -merge )

But in project, I used option second i.e. from branch.

answer May 30, 2015 by Harshita
Similar Questions
+4 votes

I have a simple requirement of running a find command to list "ALL" checked-in versions between two labels.

Im running a below command

 cleartool find a.cpp -ver "brtype(test) && lbtype(LABEL1) && ! lbtype(LABEL2)" -print

which is listing the output as

a.cpp@@maintest5

but LABEL1 is on maintest1 and LABEL2 is on maintest5 and Iam expecting that it would list all checked-in versions rather than just the latest version

any suggestions?

...