查找文件内容
在 Git 仓库中,你可以通过以下方法查找文件内容中包含特定字符串的提交记录。
1. 查找包含特定内容的提交
要在某个分支的历史记录中查找包含特定内容的提交,可以使用:
bash
git grep 'search_string' branch_name
例如,在 feature_branch
分支中查找包含 TODO
字符串的所有文件:
bash
git grep 'TODO' feature_branch
2. 查找某个文件历史中的提交
如果你想在某个文件的历史中查找包含特定字符串的提交,可以使用:
bash
git log -S 'search_string' -- path/to/file
例如,在 feature_branch
分支中查找 src/main.c
文件中包含 int main
的提交:
bash
git log -S 'int main' feature_branch -- src/main.c