Hiding an element in ClearCase

前端 未结 2 1217
深忆病人
深忆病人 2021-01-15 02:34

I\'m trying to hide an element in my ClearCase view. I\'ve set the following line in my config spec:

element /path/to/some/element -none

Fu

相关标签:
2条回答
  • 2021-01-15 02:44

    I confirm a config spec wouldn't operate well through a symbolic link.
    See config spec man page

    There is no VOB symbolic link scope.
    A VOB symbolic link is cataloged (listed) in one or more versions of a directory element

    A vob symbolic link adds some issue with the config spec (seen for instance after relocating elements)

    Even without talking about Vob symlink, this technote mentions that ClearCase config spec without an unrelated wildcard or unrelated recursive rule will not resolve the end point of a symlink.

    0 讨论(0)
  • 2021-01-15 03:00

    What dawned on my was that the path to the element contained a link to another VOB. After I changed the path to the absolute path of the other VOB, it worked:

    element /var/vob/other_vob/vob/path/to/some/element -none
    

    Apparently config spec settings don't apply through links.

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