是否有任何简单的方法可以仅将提交消息作为纯文本获取,而输出中没有任何其他信息?
问问题
146 次
4 回答
4
我想git log --pretty=format:%B <from>..<to>
这就是你所追求的。
例如对于我的一个项目:
$ git log --pretty=format:%B 35548842b09..HEAD
Changes quoting to fix transcoding on windows
Removes an unneeded puts statement
Updates the readme
Updates streamroller.bat
于 2012-11-01T15:18:42.203 回答
0
于 2012-11-01T15:11:48.997 回答
0
git log --format=format:%b
仅显示提交的主体或git log --format=format:%s
主题,而不显示任何其他信息。
于 2012-11-01T15:14:12.983 回答
0
试试git log --format=%B
。尝试man git-log
更多选择。
于 2012-11-01T15:17:15.493 回答