开发者

How generate a report of diff between two baselines in Clearcase UCM?

开发者 https://www.devze.com 2023-03-28 18:09 出处:网络
I am trying to generate a report of what changed (files and lines of code) between two baselines.I was able to see the activities and versions but is there a way to print out, say each file name and t

I am trying to generate a report of what changed (files and lines of code) between two baselines. I was able to see the activities and versions but is there a way to print out, say each file name and the diff of the versions betwee开发者_StackOverflow中文版n the two baselines?


You need to get back all the versions of B1 and B2, and for each version, to::

  • get the name of the element (See fmt_ccase: cleartool descr -fmt "%En")
  • get the most recent version V1 of the baseline 1 (B1 being the most recent baseline)
  • get the oldest version V2 of the baseline 2 (B2 being the oldest baseline)
  • cleartool diff V1 V2
0

精彩评论

暂无评论...
验证码 换一张
取 消