3

I am currently using ClearCase over a remote network and it is painfully slow. It takes forever just to browse to the stream that I want to make a baseline of. Is there a quick, easy, and safe way to make a baseline from the cleartool interface of a specific stream?

Thanks,

Ian

Ian
  • 4,169
  • 3
  • 37
  • 62

1 Answers1

3

The basic command, from cleartool man mkbl:

 cleartool mkbl -view anUCMView aBaselineName

You need a view associated to your target Stream to apply the baseline.
I recommend using the -full option, in order to create a full baseline (rather than an incremental one by default).

Using a snapshot or a dynamic view for mkbl shouldn't make a difference, but I like working in a snapshot view, and setting my baselines in a dynamic view (in which I am sure I don't have any pending checkouts).

See:

Note: this is for a full ClearCase installation, not CCRC (ClearCase Remote Client).

Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
  • With CCRC, the latest changes in 8.0.0.4 still doesn't include any `mkbl` command (http://www-01.ibm.com/support/docview.wss?uid=swg21594728) – VonC Dec 07 '12 at 14:29
  • Okay, When I read the documentation I think I read the mkbl command as mklbl. As in I thought it was making a label and not a baseline. Thanks again Von. – Ian Dec 07 '12 at 14:44