Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I retrieve a file through Label in Config Spec?

Tags:

clearcase

I have labelled a file "Test.java" with a label called "My_Label".
When I try creating a view with the below config specs, I am unable to get the file in Clearcase Explorer.

element * CHECKEDOUT
element * My_Label

Could anyone please tell where am I going wrong in the above config spec?

like image 669
user1688506 Avatar asked Sep 21 '12 10:09

user1688506


1 Answers

That selection rule alone isn't enough.

You need to add, before that rule, other rules that will select the right version of the parent directories.

In other words, if your parent directory (or one of the ancestors) of Test.java isn't labelled with My_Label, it won't be selected at all.
So your file won't be accessible by your view, even though you have the correct selection rule for you file.

Check if the Vob itself has been labelled with MyLabel.

If not, I would recommend at least to add one final "stop" rule (/main/LATEST: see "ClearCase Branching using configspec" for an illustration of that rule):

element * CHECKEDOUT 
element * My_Label
element * /main/LATEST
like image 200
VonC Avatar answered Sep 21 '22 16:09

VonC