可能的重复: 如何搜索存储库中的所有提交?
是否有一种方法可以使用命令行搜索提交标头?
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帮助日志。