如何确定文件首次添加到 CVS 存储库的日期/时间
是否有任何简单的 cvs 命令可以让我获取文件首次添加到 CVS 存储库中的模块时的日期/时间。
我实际上想要一个可由我的某个脚本使用的单行输出。
Is there any simple cvs command through which I can get date/time when a file was first added to the module in CVS repository.
I actually want a one line output that can be consumed by my some script.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这在 CVS 中不能直接实现。人们可以获得文件的活动日志,然后从中识别日期。以下是单行命令,其工作方式类似于超级按钮,并给出文件首次添加到存储库中的日期。
上面的命令查看整个存储库并给出日期。如果要查找分支上该文件的第一个活动,请使用以下命令。
对于分支:
对于主干:
This is not directly possible in CVS. One can get activity logs for a file and then identify the date from them. Following is the single line command that works like a charm and gives the date when the file was first added in the repository.
Above command looks through the entire repository and gives the date. If one is looking for first activity on that file on a branch use following commands.
For Branch:
For Trunk: