1

今天我们在 Clearcase UCM 中遇到了奇怪的问题。

我们试图添加一个名为“Common”的文件夹(其中包含许多子文件夹和文件元素)。

当我们点击 add to source control 时,它不会显示活动列表框。(它显示好像我们试图在基本 clearcase 中添加到源代码控制)。

当我们取消它时,它会抛出异常并首先将文件夹名称更改为小写字母(普通)。如果我们尝试将此添加到源代码控制,它会显示活动列表。(就像普通的 UCM 添加到源代码控制对话框一样)。

我们检查了 cc.cpl 中的案例保存复选框,然后重新启动了服务。但我们仍然面临同样的问题。

我们使用的是最新的 clearcase,操作系统是 Windows 7。我不知道为什么会这样。它阻止了我们添加名为“Common”的源代码控制。

可能是什么问题 ?如果您遇到此问题并解决了,请指导我。

4

1 回答 1

1

每当通过 GUI 发生奇怪的错误时,通常的建议是回退到 CLI。

看:

你可以做:

# go to the parent directory of Common
cd <view/path/to/Common>/..
# check there is a current activity set
cleartool lsact -cact
# checkout the parent directory
cleartool checkout -nc .
# add to source control Common (not its content, just the directory)
cleartool mkelem –nc -ci -ptime –eltype directory
# checkin the parent directory
cleartool checkin -nc .
于 2012-06-07T08:24:23.250 回答