在 Clearcase 视图中查找比特定日期更新的文件?

发布于 2024-12-08 15:40:19 字数 158 浏览 0 评论 0 原文

我必须上传更改的文件以进行代码审查,但遇到以下问题:

我需要找到视图中自上次代码审查上传以来已更改的所有文件。我以为我在上次上传评论时标记了所有文件,但看来我没有。

如何在当前视图中查找日期比上次上传日期更新的所有 Clearcase 元素?自上次上传以来已有多次签到。

I've got to upload my changed files for code review, but I have the following issue:

I need to find all the files in my view that have changed since my last code review upload. I thought I labeled all the files when I did the last review upload, but it appears that I didn't.

How do I find all clearcase elements in my current view that have a date newer than the date of my last upload? There have been MANY check-ins since the last upload.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

薔薇婲 2024-12-15 15:40:19

这是cleartool find 请求,带有来自 查询语言:(

参见cleartool find 命令的其他示例

cleartool find <vobtag> -element "{created_since(target-data-time)}" -print

href= " 列出元素(而不是版本,它会显示每个文件的许多签入版本)

这应该可以工作对于快照或动态视图,无论是否为 UCM(“UCM”适用于附加到 UCM 流的视图)。

This is a cleartool find request with a time-based directive from the query language:

(See Additional examples of the cleartool find command)

cleartool find <vobtag> -element "{created_since(target-data-time)}" -print

That will list elements (instead of versions, which would display many checkins versions for every file)

This should work for snapshot or dynamic views, UCM or not ("UCM" being for views attached to an UCM Stream).

孤独陪着我 2024-12-15 15:40:19

您可以在视图中查找早于某个日期的所有版本:

ct find -all -type f -version "{created_since(11-apr-2013) && brtype(branch_name)}" -print

将查找所有文件并避免目录。

You could look for all versions in your view that are older than a date:

ct find -all -type f -version "{created_since(11-apr-2013) && brtype(branch_name)}" -print

Will find all files and avoid directories.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文