What's the easiet way to detect “evil twins” in Rational ClearCase?

前端 未结 1 677
逝去的感伤
逝去的感伤 2020-12-06 15:05

I\'m using ClearCase 7.1

I suspect we have some evil twins. I\'m looking for the most efficient way to find them out by scanning the VOB or any other ways. Is there

相关标签:
1条回答
  • 2020-12-06 15:15

    Unless you benefit from the integrated evil twin detection from ClearCase 8.0, the only way remains cleartool find command:

    See "About Evil Twins, "locate" section" for some examples:

    you run the following command from two views and compare the output (oid and pname), you can verify whether there is an evil twin situation on a file level:

    Windows syntax example:

    cleartool find . -type f -exec "cleartool describe -fmt \"%On, %n\n\" \"%CLEARCASE_PN%@@\""
    

    Unix syntax example:

    cleartool find . -type f -exec 'cleartool describe -fmt "%On, %En\\n" $CLEARCASE_PN@@'
    
    0 讨论(0)
提交回复
热议问题