cleartool 列出了过去 7 天以来的活动
我们使用具有多个 Vobs (10) 的 ClearCase UCM。
如何查找过去一周的活动?
或者列出两个日期范围之间的活动?
We use ClearCase UCM which has multiple Vobs (10).
How to find the activities for past one week?
Or list activities between two date ranges?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这有点棘手,因为所有
cleartool lsactivity
命令仅限于一个 pvob(“项目 vob”或“其中包含 UCM 元数据的特殊 vob”):并且活动可以重复使用(意味着旧活动的变更集中可以有最新版本)
如果您有两个基线,您可以轻松区分它们(按活动):请参阅 ..
diffbl
** 。(尽管这对于一个 Vob 中的一个组件是必需的)
但如果没有,您需要列出所有活动及其变更集,以查看哪一个包含在相关日期范围内生成的版本。
It is a bit trickey, because all
cleartool lsactivity
commands are limited to one pvob ("project vob" or "special vob with UCM metadata in it"):And an activity can be reused (meaning an old activity can have in its changeset very recent versions)
If you have two baselines, you can easily diff them (by activity): See ..
diffbl
**.(that is necessary for one component within one Vob though)
But if not, you need to list all activities and their changeset, to see which one contains version produced in the relevant date range.
我们正在使用名为“Compare BL”的 ClearCase UCM 插件,由“Go Midjets”制作。它满足您的需求。
We are using a ClearCase UCM plugin which called "Compare BL", made by "Go Midjets". It answers your needs.
这是 Linux tcsh 的有用片段。
对于您获得的每个活动,您可能需要列出其更改集。
您可以使用
cleartool lsact -s
和cleartool lsact -fmt "%[versions]p"
,如下所示:
http://www.snip2code.com/Snippet/961 /list-files-changed-in-clearcase-ucm-stre?fromPage=1
Here a useful snippet for Linux tcsh.
For each activity you get you may want to list its changed set.
You can use
cleartool lsact -s
andcleartool lsact -fmt "%[versions]p" <act_Name>
as shown here:
http://www.snip2code.com/Snippet/961/list-files-changed-in-clearcase-ucm-stre?fromPage=1