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