CVSNT:从标签到文件名和修订版本列表
我有一个项目,其源代码由 CVSNT 控制。
我需要属于某个标签的源文件名和修订版本的列表。 例如:
the tag MYTAG is:
myproject/main.cpp 1.5.2.3
myproject/myclass.h 1.5.2.1
我知道使用 cvs log -rMYTAG > log.txt
我在 log.txt
中获取了我需要的所有信息,然后我可以过滤它来构建我的列表,但是,是否有任何实用程序已经可以满足我的需要?
I have a project with sources under the control of CVSNT.
I need a list of source file names and revisions belonging to a certain tag.
For example:
the tag MYTAG is:
myproject/main.cpp 1.5.2.3
myproject/myclass.h 1.5.2.1
I know that with cvs log -rMYTAG > log.txt
I get in log.txt
all the information I need and then I can filter it to build my list, but, is there any utility which already do what I need?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
下面是执行此操作的 Python 脚本:
请注意,您必须设置 CVSROOT 环境变量,或者从要查询的存储库检出的工作副本中运行此变量。
此外,显示的文件名基于 rlog 输出的“RCS File”属性,即它们仍然包含存储库前缀。如果您想过滤掉它,您可以指定第三个参数,例如,当您的
CVSROOT
类似于sspi:server:/cvsrepo
时,您可以这样调用:Hope this有帮助。
注意:如果您需要一个列出工作副本中当前修订版本的脚本,请参阅此答案的编辑历史记录。
Here's a Python script that does this:
Note that you either have to have a
CVSROOT
environment variable set or run this from inside a working copy checked out from the repository you want to query.Also, the file names displayed are based on the "RCS File" property of the
rlog
output, i.e. they still contain the repository prefix. If you want to filter that out you can specify a third argument, e.g. when yourCVSROOT
is something likesspi:server:/cvsrepo
then you would call this like:Hope this helps.
Note: If you need a script that lists the revisions currently in your working copy, see the edit history of this answer.