如何使用命令行在提交消息中搜索?

< p > 可能的重复: < br > 如何搜索存储库中的所有提交? < / p >

是否有一种方法可以使用命令行搜索提交标头?

144175 次浏览
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