CVS:列出标签之间添加/删除的所有文件
有没有办法列出在两个选定标签之间添加/删除到存储库的所有文件?我尝试了 cvs 历史记录,但它只显示历史记录,因为特定标签最后添加到历史文件中。命令行解决方案会更好。
Is there any way to list all the files added/removed to repository between two selected tags? I tried cvs history but it only shows history records since a particular tag was last added to the history file. The command line solution would be preferable.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 cvs rdiff -s -r; -r <标签2> <模块>。
此答案中有一些示例输出。
You can use
cvs rdiff -s -r <tag1> -r <tag2> <module>
.There is some example output in this answer.