如何使用命令提示符在给定配置方面的清晰案例中打开动态视图?
我有视图的配置方面,我需要使用命令提示符在 Clear Case 中创建视图。 请让我了解一些示例中可以使用的命令。
提前致谢!
I have config spects for a view and I need to create a view in Clear Case using command prompt.
Please let me about the commands I can use with some example.
Thanks in Advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这将使用:
cleartool mkview
cleartool setcs -tag yourDynView pname
,其中 pname 是“一个文本文件,其内容将成为视图的新配置规范”。用于创建动态视图:
这将创建一个具有默认配置规范的动态视图:
然后,您将能够使用
setcs
命令将该配置规范替换为文件中存储的任何其他配置规范。That would be using:
cleartool mkview
cleartool setcs -tag yourDynView pname
, with pname being "a text file whose contents are to become the view's new config spec".For creating a dynamic view:
That will create a dynamic view with a default config spec:
You will then be able to replace that config spec with any other config spec stored in a file, with the
setcs
command.