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.
假设我提交了 20 个文件,其中可能包含类似I18n.t. 是否可以找到所有这些行,但只能在该提交修改的文件中找到?如果我这样做:
I18n.t
git grep I18n.t commit_sha
它也找到了我在其他文件中的行。
您可以使用git show:
git show
git show commit_sha | grep I18n.t