Find if current stream contains baseline in ClearCase

后端 未结 1 876
不知归路
不知归路 2021-01-15 03:52

Let us say I have a baseline called A1. What I then want to see if there is any way for me to be on another stream, anywhere in the same project, to see if I have A1 in my s

相关标签:
1条回答
  • 2021-01-15 04:30

    ClearCase works based on activities, and you should determine is an activity has been delivered by using cleartool lsact -contrib:
    See "Activities delivered since the last baseline", and a more complete example at "Describe baseline and expand deliver and rebase activities".

    You can list all activities of a baseline with cleartool descr -l baseline:A1@\pvob.


    Another case is simply when A1 is a foundation baseline in your other stream.
    you can describe your other stream, using fmt_ccase format, to list only the foundation baselines and check if A1 is part of those.
    See "Display Current Baseline with Cleartool".

    Then you need to check if you have LATEST versions which have no 'A1' label on them.
    See for instance "How to make cleartool tell if source is modified since last baseline".

    0 讨论(0)
提交回复
热议问题