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

why I only get a clearcase version 0?

As explained in “Before adding files and directories to source control”, the version 0 is a placeholder marking the start for all versions in a given branch: You can end up with only the version 0 when you undo-checkout a file you just checked out in a new branch (in that case, only a version … Read more

What is the difference between Full baseline and Incremental baseline in Clearcase UCM?

It will contain all changes. Except an incremental baselines will compute those changes by adding: unique modifications introduced by the few changes (that is what an “incremental baseline” is: a label set only on the new versions since the previous baseline) all the other changes already references by the previous baselines up to a full … Read more

What are the basic clearcase concepts every developer should know? [closed]

Core concepts? centralized(-replicated) VCS: ClearCase is halfway between the centralized VCS world (one or several “centralized” repos or VOBS – Version Object Bases – every developer must access to commit) and the distributed VCS world. But it also supports a “replicated” mode allowing you to replicate a repo in a distant site (MultiSite ClearCase), sending … Read more