本文介绍了如何检查我是否有基本的保护套或UCM?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是ClearCase的新手。

I am new to ClearCase . I have used rational synergy before.

我们在项目中使用ClearCase进行版本控制。

在我的旧项目中,我使用了理性协同,在其中我们曾经为文件中的任何修改创建任务。

We use ClearCase in our project for version control.
In my old project, I have used rational synergy, in which we used to create "tasks" for any modifications in the files.

我知道我们在ClearCase中有活动,我想在我们的项目中使用这些活动。

到目前为止,我们只是检查-

但是当我检查我的ClearCase->操作时,我没有看到选项-> WorkOn 开始创建活动。

I got to know that we have activities in ClearCase, which I want to use in our projects.
As of now, we just check-out the files and modify and checkin the changes.
But when I check my ClearCase --> Actions, I don't see the option ->WorkOn to start creating an activity.

我们当前正在使用以下版本的ClearCase:

We are currently using the following version of ClearCase:

Version: 7.0.1.D061004
Build id: BALTIC_MR1.D070516

请告诉我是否需要安装其他产品?

Please tell me if i need to install anything else?

推荐答案

工作将是():

The "work on" would be (setact man page):

cd /path/to/your/ucm/view
cleartool setact anActivity@\yourPVob

检查您当前正在从事的活动():

To check on what activity you are currently working (lsact man page):

cd /path/to/your/ucm/view
cleartool lsact -cact






要检查如果一个视图是UCM,则不是:


To check if a view is an UCM one or not:

cd /path/to/your/view
cleartool lsstream -cview

如果您的视图中有流,则为UCM。如果不是,则为基础ClearCase(不是单独的视图):动态或快照:您可以同时为UCM或基本ClearCase拥有动态或快照视图。

If there is a stream attached to your view, it is an UCM one. If not, it is a base ClearCase one (not this is separate for the nature of the view: dynamic or snapshot: you can have dynamic or snapshot view both for UCM or for base ClearCase).

另一种方法是:

cleartool catcs

UCM视图的配置规范是自动生成的,并且比基本ClearCase视图的配置规范复杂得多。

The config spec for an UCM view is automatically generated and quite more complex than the one for a base ClearCase view.

这篇关于如何检查我是否有基本的保护套或UCM?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-21 08:37