如何使用mklabel celearcase命令应用私有标签?

时间:2018-02-09 13:33:28

标签: clearcase vob

我想在clearcase vob中的文件上应用个人标签。 我使用了命令:

$config = [
        'base_url'   =>  base_url('product?catVal='.$this->input->get('catVal', true)),
        'per_page'   =>  3,
        'total_rows' =>  $this->slider_model->num_rows($this->input->get('catVal', true)),

     ];


     $this->pagination->initialize($config);


    $product['cat_products'] = $this->slider_model->catproduct($config['per_page'], $this->uri->segment(3), $this->input->get('catVal', true));

    $product['sidegetsub'] = $this->slider_model->getsub();
    $this->load->view('product', $product);

结束结果是:

  

cleartool:错误:在VOB“\ TEST_vob”中找不到标签类型“MY_LABEL”   没有全局类型定义cleartool:错误:无法创建标签   “TestFile.txt”版本“\ main \ 1”上的“MY_LABEL”。

我从文件的同一级别的命令行执行命令。 我是否错误地使用了命令,或者CC管理员是否锁定了命令?

1 个答案:

答案 0 :(得分:0)

您应首先使用cleartool mklbtype命令

创建标签 type
M:\myView\TEST_vob\aFolder> cleartool mklbtype -nc MY_LABEL
Created label type 'MY_LABEL'.

然后再次尝试mklabel命令。