1. 语法
git log --pretty=format:"arg"
2. 说明
%H 提交对象(commit)的完整哈希字串
%h 提交对象的简短哈希字串
%T 树对象(tree)的完整哈希字串
%t 树对象的简短哈希字串
%P 父对象(parent)的完整哈希字串
%p 父对象的简短哈希字串
%an 作者(author)的名字
%ae 作者的电子邮件地址
%ad 作者修订日期(可以用-date= 选项定制格式)
%ar 作者修订日期,按多久以前的方式显示
%cn 提交者(committer)的名字
%ce 提交者的电子邮件地址
%cd 提交日期
%cr 提交日期,按多久以前的方式显示
%s 提交说明
3. 常用举例
显示最近70条按照作者排序
git log --format="%h %an %s" | grep -v 'Merge' | head -n 70 |sort -k 2
显示自己最近70条提交内容
git log --format="%h:%s" --author={your name} | grep -v 'Merge' | head -n 70
转载自: https://my.oschina.net/guoenzhou/blog/3042931