我想在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管理员是否锁定了命令?
答案 0 :(得分:0)
您应首先使用cleartool mklbtype
命令
M:\myView\TEST_vob\aFolder> cleartool mklbtype -nc MY_LABEL
Created label type 'MY_LABEL'.
然后再次尝试mklabel
命令。