1

I had to deliver some code(a folder and some files inside) from an activity A from dev stream to int stream in ucm clearcase. before delivering I renamed the folder using another activity B and changed some files inside. Now, While delivering from dev to int, I cannot find A and B as undelivered work.

Please advise how to resolve. let me know if any other information is required.

user2636464
  • 685
  • 7
  • 17

1 Answers1

1

The usual workaround would be to a non-UCM merge by activity, instead of an UCM deliver (which is not listing the expected activities), using cleartool findmerge.

See "How to merge changes from a specific UCM activity from one ClearCase stream to another"

cd /path/to/myView/myFolder
ct findmerge activity:B@\pvob -fcsets -c "deliver B" -merge -gmerge

See also "how to merge new folder from a sub branch to the main branch in clearcase?".

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
  • thanks. I know I can use non-ucm merge. But, I could not find out why this is happening. but thanks again for the help and the links – user2636464 Dec 05 '17 at 09:26
  • @user2636464 What is your version of ClearCase? Can you list activities on that stream to check A and B are still there? Can you ct descr -l those two activities? – VonC Dec 05 '17 at 09:30
  • clearcase 8.0. I can see both activities there. for a workaround I have just merged folders and files manually. But, I have not been able to find the reason why. – user2636464 Dec 16 '17 at 11:11