svn log 文件中的特定行
假设文件中给定的一组行被修改,我想找到修改它们的 SVN 版本。目前我只需要不断地浏览日志并找到它最后手动添加的位置,有更好的方法吗?
Let's say a given set of lines were modified in a file, I want to find the SVN revision at which they were modified. Currently I just have to keep picking through the log and finding where it was last added manually, is there a better way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
svnblamemyFile
为您提供每行的修订号和作者编辑: 看看本文档。您还可以向命令添加一些选项。例如:
svn blame myFile
gives you the revision-number and author of each lineedit: Take a look at this document. You can also add some options to the command. For instance: