我们项目中有5个人,有时我们希望在SVN上找到特定的提交,就像错误解决一样。
当然,我们不知道研究提交的修订号。
有人有想法通过评论找到提交吗?
我认为通过解析svn日志和使用正则表达式可以实现,但我希望有更好的方法。
答案 0 :(得分:6)
如果您更喜欢cli,请使用bool operator!=(const Date& d) const { return !(*this == d);}
bool operator<=(const Date& d) const { return (*this == d) || (*this < d); }
bool operator>=(const Date& d) const { return !(*this < d); }
bool operator> (const Date& d) const ( return !(*this <= d); }
(请参阅doc)
log --search
答案 1 :(得分:2)
如果您在Windows环境中运行,则可以使用Tortoise SVN在提交评论中进行搜索,并利用Revision Log Dialog。
搜索日志消息... 在日志消息中搜索您输入的文本。这将搜索您输入的日志消息以及操作 Subversion创建的摘要(显示在底部窗格中)。搜索 不区分大小写。
如果你在Linux环境中运行,你可以使用像RabbitVCS这样的替代方案,它几乎以同样的方式运行。