在 git log 中搜索提交字符串

使用日志中的一些字符串搜索 git 日志:

git log [options] --grep "search_string"

例:

git log --all --grep "removed file"

将在所有分支的所有日志中搜索 removed file 字符串。 ****

从 git 2.4+开始,可以使用 --invert-grep 选项反转搜索。

例:

git log --grep="add file" --invert-grep

将显示所有不包含 add file 的提交。