Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找一个脚本或应用程序,它可以使用一些关键字(如错误、缺陷、修复等)在 svn 或 git 的存储库、配置文件、提交历史等中查找。应用程序可以采用任何存储库链接和关键字和然后产生结果。任何帮助深表感谢。谢谢。
对于 Subversion,您可以尝试
让 Git 查找提交消息包含您可以使用的给定关键字的所有提交
$ git log --grep=keyword
或使用镐搜索
$ git log -Skeyword
OpenGrok,一个源代码搜索和交叉引用引擎,也将是一个可能的候选者。