3

我有一个具有默认流目标的存储库工作区。我想编辑流目标并使其仅适用于少数组件。这可以通过 RTC Eclipse 客户端实现。如何从 RTC 命令行界面实现相同的功能。请参考 RTC 3.0.1.3。

4

1 回答 1

2

我不确定该 API 是否适用于 3.x,或者仅适用于 4.x,但这个命令序列lscm似乎产生了一个作用域流目标:

# Set a component as the flow target
$ lscm workspace flowtarget TestWorkspace1 TestStream1 -C TestComp2  -r lo
Successfully updated the flow target.

# View workspace flow target that was scoped to specific components
$ lscm workspace flowtarget TestWorkspace1 TestStream1 -r <repo>
(1352) "TestStream1" (scoped) (current)
The following components flow from/to this flow target:
  (1351) "TestComp2"

您可以看到Rational Team Concert 4.0.1 M4 Milestone中引入的该命令,因此它可能在 RTC3.x 中不可用。

于 2013-03-20T17:58:45.587 回答