< p > 可能的重复: < br > 如何搜索存储库中的所有提交? < / p >
是否有一种方法可以使用命令行搜索提交标头?
git log --oneline | grep PATTERN
git log --grep=<pattern> Limit the commits output to ones with log message that matches the specified pattern (regular expression).
从git help log。
git help log