Config specs and Load rules difference

断了今生、忘了曾经 提交于 2019-11-27 06:08:42

问题


What is the difference between Config specs and Load rules in Clearcase?

Are both of them edited using "cleartool editcs -tag " command only?


回答1:


A config spec is a collection of:

  • selection rules (for selection the right versions)
  • load rules (only for snapshot view) for loading into your "workspace" (the snapshot view) the files selected by... the selection rules just above!

You can edit both with ct edcs (just "ct edcs" if you are anywhere in a ClearCase view).

Of course, in a dynamic view, you will only edit selection rules, since there are no "load rules":
there is nothing to "load" on your disk, since the all point of dynamic view is network access to data (very quick, and dynamic as in "automatically refreshed" if the selection rule is on "LATEST" of a branch).


Simple tricks with load rules:

a/ Use "/" even on windows
No need of load \myVob: load /myVob works too

b/ Use them in combination with "cleaning selection rules":
a selection rule is a rule at the end (before the loading rules) which selections nothing

 element /myVob/* -none

Since other selection rules placed before that one does select several sub-directories, that last selection rules only means: "if it is not previously selected before, do NOT select it at all".

Consequence for a snapshot view?

Instead of writing:

load /myVob/a
load /myVob/b/b1
load /myVob/b/b2
# do not load /myVob/c
# do not load /myVob/d
load /myVob/e

(because you only want specific directories within /myVob), you can just write:

load /myVob

One simple load rule: it won't load what is not selected. and since "/myVob/c" or "/myVob/d" are not selected, they will not appear (even empty) on the disk within your snapshot view.



来源:https://stackoverflow.com/questions/1346966/config-specs-and-load-rules-difference

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!