清除案例报告向导中未标记文件的列表
List of UnLabelled files in Clear case reporting wizard
使用清除案例报告向导,我如何从特定日期检索分支中未标记文件的列表?
您首先需要一个在特定日期配置为 select 元素的视图:使用 time-based selection rule config spec:
element /myPath/... /main/{!created_since(16-Sep-2009)}
element /myPath/... /main/LATEST
我建议为此使用动态视图,因为您可以轻松调整所述配置规范,直到看到所需的版本,并在每次修改配置规范后快速刷新视图。
正确设置视图后,您可以使用:
- 一个simple find query to list all version not labelled with a specific label
- 或者尝试使用 ClearCase 报告向导,在 select first the appropriate script (which are in
C:\Program Files\Rational\ClearCase\reports\scripts
, like mentioned in this thread).
我怀疑配置这些脚本来报告所有标记版本很容易,我不知道你是否可以报告 "negative" 形式(给定标签的所有非标记版本)。
使用清除案例报告向导,我如何从特定日期检索分支中未标记文件的列表?
您首先需要一个在特定日期配置为 select 元素的视图:使用 time-based selection rule config spec:
element /myPath/... /main/{!created_since(16-Sep-2009)}
element /myPath/... /main/LATEST
我建议为此使用动态视图,因为您可以轻松调整所述配置规范,直到看到所需的版本,并在每次修改配置规范后快速刷新视图。
正确设置视图后,您可以使用:
- 一个simple find query to list all version not labelled with a specific label
- 或者尝试使用 ClearCase 报告向导,在 select first the appropriate script (which are in
C:\Program Files\Rational\ClearCase\reports\scripts
, like mentioned in this thread).
我怀疑配置这些脚本来报告所有标记版本很容易,我不知道你是否可以报告 "negative" 形式(给定标签的所有非标记版本)。