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

How to bridge git to ClearCase?

Here’s a method that avoids hijacks, which our team used this method quite successfully for over a year, until we retired ClearCase for Subversion (per company policy, although it is a backwards step for our team – we were basically just using ClearCase as a dumb file system, and virtually working natively in git, but … Read more

ClearCase advantages/disadvantages [closed]

You can find a good comparison between ClearCase and Git in my SO answer: “What are the basic ClearCase concepts every developer should know?“, illustrating some major differences (and some shortcomings of ClearCase) File-centric operations The most single important shortcoming of ClearCase is its old “file-centric” approach (as opposed to “repository-centric” like in SVN or … 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

Python and ClearCase setview

I wouldn’t recommend setting a view, because setview itself spawn a new process. I really prefer working with /view/viewTag/aVob/… after starting the view (cleartool startview viewTag ) The “spawn process” issue makes the all thing too complex in my opinion, and explains why you have technotes like: “Setting into a view from a shell script … Read more

How can I use ClearCase to “add to source control …” recursively?

I would rather go with the clearfsimport script, better equipped to import multiple times the same set of files, and automatically: add new files, make new version of existing files previously imported (but modified in the source set of files re-imported) remove files already imported but no longer present in the source set of files. … Read more