How to find files asssociated with a ClearCase UCM activity?

后端 未结 3 1342
离开以前
离开以前 2020-12-06 22:37

Can someone help me with the following question: How can I find files that were checked in with some activity.

For example:

I am working on a view called <

3条回答
  •  时光取名叫无心
    2020-12-06 22:51

    See cleartool lsactivity man page:

     cleartool lsactivity -l activity-id@\aPVob      # (windows)
     cleartool lsactivity -l activity-id@/vobs/aPVob # (unix)
    

    You have also the describe option with fmt_ccase

     cleartool describe -fmt "%[versions]CQp"  activity-title@\aPVob
    

    In both cases, make sure to use the activity ID and noy the activity "headline":

    enter image description here

    The activity above, for instance, woiuld need test1_24342, not test1 (its "Headline")

    If you execute it:

    • outside your view, you will get the extended paths for all the versions recorded in this activity.
    • within your view, you will get the paths.

提交回复
热议问题