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.
我想及时回到包含诸如“ThisClass(object):”之类的代码的最后一次提交。该代码随后在稍后的提交中从项目中删除。
我考虑过使用 git bisect + grep/awk-ing。我还听说 git grep 可能允许您执行此类操作,尽管我无法在手册页中找出正确的命令。
有什么想法吗?
使用 -S(搜索)参数来git log:
git log
git log -S 'ThisClass(object):'