在 CLI 中列出 CVS 模块内的所有标签
是否可以获取 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 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
您可以在此处复制一个脚本:
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.