当我从 Clearcase 资源管理器创建视图时,开发视图和集成视图都会创建为快照

发布于 2024-07-15 05:30:57 字数 72 浏览 5 评论 0原文

我根本没有选择视图是快照还是动态的选项。 我想要的是开发视图是快照的,集成视图是动态的。 为什么没有提示我选择快照/动态视图?

I do not get the option at all to choose for the views to be snapshot or dynamic.
What I would want is the development view to be snapshot and the integration view to be dynamic. Why is it that I am not prompted to let me choose my views to be snapshot/dynamic?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ゝ偶尔ゞ 2024-07-22 05:30:57

也许您有 ClearCase LT,它仅提供快照视图?

ClearCase mkview 帮助页面

指定视图类型

默认

  • ClearCase:动态视图。
  • ClearCase LT:快照视图

无论如何,您可以尝试通过命令行创建视图 cleartool

  • 快照:

    cleartool mkview -snap -tag yourView_snap -stream yourStream@\yourPVob -stg aStorage aViewPath 
      
  • 动态:

    cleartool mkview -tag yourView -stream yourStream@\yourPVob -stg aStorage 
      

请注意命名约定(快照视图的 yourView_snap):这是一个约定,它应该反映:

  • 您的登录信息
  • 流的名称

更多详细信息请参见 这个其他答案


另请注意,“集成视图”并不总是针对“动态视图”:如果您进行一些涉及某些编译的“集成测试”,则快照视图可能更适合。

May be you have ClearCase LT, which only provides snapshot view ?

As mentioned in the ClearCase mkview help page:

Specifying the kind of view

Default

  • ClearCase: Dynamic view.
  • ClearCase LT: Snapshot view

Anyway, you can try to create your views through command line cleartool:

  • Snapshot:

      cleartool mkview -snap -tag yourView_snap -stream yourStream@\yourPVob -stg aStorage aViewPath
    
  • Dynamic:

      cleartool mkview -tag yourView -stream yourStream@\yourPVob -stg aStorage
    

Please note the naming convention (yourView_snap for snapshot view): this is a convention, and it should reflect:

  • your login
  • the name of the stream

More details in this other SO answer.


Also note that an "integration view" is not always made for a "dynamic view": if you make some "integration test" involving some compilation, a snapshot view may be more adapted.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文