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 between the two baselines?
Asked
Active
Viewed 3,835 times
1 Answers
1
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
V1of the baseline 1 (B1being the most recent baseline) - get the oldest version
V2of the baseline 2 (B2being the oldest baseline) cleartool diff V1 V2
VonC
- 1,262,500
- 529
- 4,410
- 5,250
-
See also http://stackoverflow.com/questions/10527550/how-to-retrieve-the-list-of-files-modified-across-base-lines-in-clear-case – VonC May 10 '12 at 05:36