将 RTC 中的未解析列表导出为文本文档

Export unresolved list in RTC as a text document

我在 visual studio 2013 中使用 RTC。刷新更改后,我得到一个未解析的文件列表。有什么方法可以 save/export 这些文件名作为文本文件。

为此您需要退回到 RTC CLI (command line interface)

lscm status 列出了未解析的文件:

[~/test]$ lscm status
Workspace: (1159) "Workspace1" <-> (1159) "Workspace1"
  Component: (1160) "Comp1"
    Baseline: (1161) 2 "SS1"
    Unresolved:
      -c- /Comp1/111/1.txt
  Component: (1162) "Comp2"
    Baseline: (1163) 2 "SS1"

Since RTC4, you can have that result in json(可能更容易parse/process)
另见“ 使用 Rational Team Concert SCM 命令行界面编写脚本".

当然,这种方法的优点是可以解析输出并将其重定向到文件。