We are using Clearcase UCM and have one Integration stream and each developer has a development stream. When I do a baseline compare, activities from the development stream are sometimes included. Is there any way to get a simple list of activities in the integration stream since a particular baseline?
相关问题
- How to restrict VOB read access in ClearCase (Wind
- preserving history when using mercurial ontop of c
- How to use ClearCase annotate sub-command?
- listing files checked in during last 2 days
- VS2008 and ClearCase : opening solution requests a
相关文章
- Provide version to independent files in clearcase
- How to undo checkout a file checked out from anoth
- Getting present working view in Clearcase
- What is the nature of a “MVFS filesystem” with Cle
- How to list only the name of the baselines in UCM
- Reuse a ClearCase view
- Value of using Git with ClearCase, AccuRev or Perf
- ClearCase: change branch type name?
That's because the contributing activities that come from child streams... Try
Note: in the integration stream, you will mostly get deliver activities, ie activities recording the merges done during delivers from the development stream.
So if you want activities from two baselines done on the integration Stream, a simple
should be enough.
If you somehow see activities from the development stream, that should mean you are comparing
bl1
from integration stream withbl2
from a development stream or two baselines from integration with merges, ie with contributing activities.Hence the
–nmerge
To illustrate why you see those activities without the -nmerge, see "List the contributing activities in the change set of a baseline or an integration activity"
An activity from the integration Stream will look like this:
If you right-click the activity and select Show Contributing Activities, you will see:
Which is the same than:
or
Again, the
-nmerge
option avoids thediffbl
to list those contributing activities.