What is composite baseline in UCM and when it will be used?

The reference on “composite Baselines” is: “Best practices for using composite baselines in UCM”. Introduced in ClearCase v2002, composite baselines are a mechanism for grouping baselines into a collection. One baseline is designated as the composite, and other baselines become members of the composite You do not necessarily have to use composite baselines when you … Read more

Integration stream vs integration view in ClearCase

Integration is a term used by convention to designate the first root stream of an UCM project. Each UCM project has one root stream (and potentially many sub-streams). The idea is that you will use your integration view as the destination view for deliver coming from sub-streams, effectively “integrated” the work done on said sub-streams … Read more

Command to find all view private files in the current directory recursively

The usual commands are based on cleartool ls: ct lsprivate: but it is only for dynamic views, not snapshot views ct ls -rec -view_only: at least, it works in both snapshot and dynamic views However both list also your checked-out files. If you want only the private files, ie skipping the hijacked/eclipsed/checked-out and symlinks, you … Read more

Clearcase Issue [closed]

individual stream for each developer under DV stream Whoât???? This is SPARTA! (err… no: madness: this is madness) A stream represents a development effort, not a sandbox for a “resource” (i.e. “a developer”). Resources come and go, development tasks stay. You should have a stream per development line, upon which many developers create their own … Read more

Creating a new subdirectory structure in ClearCase?

As explained in How can I use ClearCase to “add to source control …” recursively?, you have to use clearfsimport which does what you are saying (checkout the parent directories, mkelem for the elements) clearfsimport -preview -rec -nset c:\sourceDir\ChildDirectory5 m:\MyView\MyVob\ParentDirectory Note the : -preview option: it will allow to check what would happen without actually … Read more

ClearCase : Loading Older Version of a specific Directory?

A first possibility would be to try and select the correct version of the sub-directory to revert, like: element /path/to/directory /main/[branch]/[version] But that would be plain wrong, because: extended path names is not supported in snapshot view, as explained in this SO question. to select the directory alone is not enough (the files would still … Read more