在 CLI 中列出 CVS 模块内的所有标签

发布于 2024-09-07 21:54:38 字数 272 浏览 3 评论 0原文

是否可以获取 CVS 中给定模块的所有生成标签的列表?

我可以使用,

cvs status -v FILE

但它显示了太多我不需要的信息。我可以使用一些只显示标签名称的 GUI 实用程序(Eclipse 就是其中之一),它们是如何做到的?你需要做一些“黑客”或者只是我不知道的参数?

我想知道是否有一个命令可以在终端上显示类似这样的内容:

TAG1
TAG2
TAG3
TAG4

Is it possible to get a list of all generated tags for a given module in CVS?

I can use

cvs status -v FILE

but it shows too much information that I just don't need. I can use some gui utilities that show me only the tag names (Eclipse is one of them), how do they do it? You need to do some "hacks" or are just parameters I'm unaware of?

I would like to know if there's a command that would show me just something like this on terminal:

TAG1
TAG2
TAG3
TAG4

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

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

发布评论

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

评论(2

小霸王臭丫头 2024-09-14 21:54:39

在 bash 中

cvs -q status -R -v |切 -d' ' -f1 |排序 -u

cvs -q 状态 -v 文件 |切 -d' ' -f1 |排序-u

In bash

cvs -q status -R -v | cut -d' ' -f1 | sort -u

or

cvs -q status -v FILE | cut -d' ' -f1 | sort -u

⊕婉儿 2024-09-14 21:54:39

您可以在此处复制一个脚本:

http://docs.codehaus.org/ display/ninja/List+CVS+Tags

似乎很遗憾这不是“核心”功能。

There is a script you can copy here:

http://docs.codehaus.org/display/ninja/List+CVS+Tags

Seems a shame this isn't 'core' functionality.

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