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.
我知道在文件 foo.cpp 今年已添加了以下行
if(engL.showPrompt()>engL.lessPrompt()) executeScript();
如何找到推动此更改的提交?
git blame foo.cpp将逐行显示最后一个对该行做出贡献的提交。
git blame foo.cpp
如果更改不在最后一次提交中,您可以使用
git log -S"if(engL.showPrompt()>engL.lessPrompt()) executeScript()" -- path/to/file