ClearCase UCM - How to get only latest versions from latest baseline

北城余情 提交于 2019-12-01 12:32:42
VonC

A baseline references all the files of a component, even if it is incremental.

Using an incremental baseline in a non-UCM snapshot view wouldn't work, because it applies a label only on the elements which are changing (which means the parent directories might not have that label, because they haven't changed, which results in a config spec incapable of selecting the changed files, since said parent directory isn't even selected).

If you are after a view able to show all the latest files, what you can do is:

But you also can:

  • list only the changed/new files:
    cleartool diffbl -pred -ver latestBl@\aPVob
  • access those files through a dynamic view with the extended pathnames returned by the diffbl -pred -ver command.

That would allow to list/access only the new/changed versions between 'latestBl' and its previous baseline (with latestBl obtained from the lsbl command shown above).

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