how to list only the name of the baselines and name of the stream from particular component in UCM ClearCase

末鹿安然 提交于 2019-12-06 17:34:30

The basic command would be cleartool lsbl:

cleartool lsbl -comp aComponent@\aPVob

You can then use fmt_ccase to display the stream as well as the baseline.

cleartool lsbl -fmt "%n %[bl_stream]Xp\n" -comp aComponent@\aPVob

A similar command would be:

cleartool lsbl -tree -comp aComponent@\aPVob 

(to see the stream, and its location within the UCM project).

If that doesn't work, you can, for each baseline returned by the first command, do a:

cleartool descr -fmt "%n %[bl_stream]Xp\n" aBaseline@\aPVob
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!