相当于 svnblame/gitblame 的clearcase?

发布于 2024-11-25 23:56:21 字数 121 浏览 0 评论 0原文

在 Rational Software 的 Clearcase 中,是否有一个 cleartool 子命令或其他命令行工具,相当于 SVN 或 git 中的 blame 命令?

In Rational Software's Clearcase, is there a cleartool subcommand, or other command line tool, equivalent to the blame command in SVN or in git?

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

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

发布评论

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

评论(2

山田美奈子 2024-12-02 23:56:21

最接近的一个是 cleartool注释

annotate 命令列出版本的内容,对每一行进行注释以指示添加该行的时间和版本。
您可以使用 –fmt 选项自定义注释,该选项在 fmt_ccase 参考页面
默认情况下,annotate 将其输出写入文件扩展名为 .ann 的文件。

要在终端上输出,例如 SVN 或 git Blame,命令行可能是:

cleartool annotate -out - source_file_path

The closest one would be with cleartool annotate:

The annotate command lists the contents of a version, annotating each line to indicate when, and in which version, the line was added.
You can customize the annotations using the –fmt option, which is described in the fmt_ccase reference page.
By default, annotate writes its output to a file whose file-name extension is .ann.

To have the output on the terminal, like SVN or git blame, a command-line might be:

cleartool annotate -out - source_file_path
绮烟 2024-12-02 23:56:21

如果要将命令输出发送到 stdout。

cleartool注释-out - foo.c

If you want to send command output to stdout.

cleartool annotate -out - foo.c

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