1

尝试以明文形式检查“ .”目录时出现错误。

供参考:

  1. 视图与流配置同步,所有组件都是可修改的。
  2. 该流具有基础基线以及推荐的基线。
  3. vob 是 ucm pvob 的组件。

    cleartool co -nc "."
    cleartool: Error: Checkout disallowed for element ".": 
      the component containing the element or the current stream is read-only 
      in this project, or the stream lacks foundation baselines.
    cleartool: Error: Unable to check out ".".
    

您将如何解决此错误消息?

4

1 回答 1

1

似乎' .'代表这里vob的根文件夹。

vob 是 ucm pvob 的组件。

确保您不签出 pvob
您需要检查组件的 vob(与 pvob 关联),而不是 pvob。

我在尝试签出aVob/lost+found文件夹中的元素时看到了此消息。
如果是这种情况,您无需lost+found在配置规范中选择该“”目录。

element /aVob/lost+found -none 

否则:

  • 仔细检查您的组件在项目中确实是可写的(项目上的属性)
  • 确保您的信息流知道这一点

    cleartool chstream -generate stream:a_stream@\a_pvob
    
  • 确保视图的配置规范与 Stream 配置同步

    cd /path/to/your/view
    cleartool setcs -stream
    
于 2013-08-22T15:17:32.097 回答