Printfrendly version of comparrison between baselines.
We have a customer that has 3 products:
ProdA
ProdB
ProdC
All of them have several versions (V1.0,V1.1 etc.)
For each of the versions there are created a snapshot.
The customer then wants to print out a report/paper that includes the Summary and Description workitems that have been associated with changesets from two snapshots compared with each other.
Is there a good way to do that?
Thanks in advance.
-Sofus Albertsen
ProdA
ProdB
ProdC
All of them have several versions (V1.0,V1.1 etc.)
For each of the versions there are created a snapshot.
The customer then wants to print out a report/paper that includes the Summary and Description workitems that have been associated with changesets from two snapshots compared with each other.
Is there a good way to do that?
Thanks in advance.
-Sofus Albertsen
3 answers
Have you tried the "S -i" option of the "scm compare" command to compare your two snapshots? It will display the result showing all work items, grouped by change set. Here is an example of such a command:
lscm compare -r URL -S i snapshot snapshot1 snapshot snapshot2
You also use the "-j" option to get a parseable output that you can format as you wish.
There is no way to include the work items' descriptions in the output, just their summaries.
lscm compare -r URL -S i snapshot snapshot1 snapshot snapshot2
You also use the "-j" option to get a parseable output that you can format as you wish.
There is no way to include the work items' descriptions in the output, just their summaries.
Read my blog post on a Simple RTC Baseline Comparison Script. It was written back in 2011 (!), but it should still work.