需求是获取git 最新提交记录传入markdown 只需要commit的内容
git log 满足不来
git log -n 显示最近的n条
git log -b branch 指定分支
git log --pretty=format:"%s" 格式化内容
git log --graph树形图
相关格式化自行百度😄
%s代表 提交说明
上代码 --graph不加也可以 一条没法体现出来它的作用
git log --pretty=format:"%s" --graph -1 -b develop
如果不想要merges信息 可以加上 --no-merges屏蔽 merges(合并的信息)
效果:
image.png还是我百度吧 !下面是我百度的😄 粘过来 ☺️
%H 提交对象(commit)的完整哈希字串
%h 提交对象的简短哈希字串
%T 树对象(tree)的完整哈希字串
%t 树对象的简短哈希字串
%P 父对象(parent)的完整哈希字串
%p 父对象的简短哈希字串
%an 作者(author)的名字
%ae 作者的电子邮件地址
%ad 作者修订日期(可以用 -date= 选项定制格式)
%ar 作者修订日期,按多久以前的方式显示
%cn 提交者(committer)的名字
%ce 提交者的电子邮件地址
%cd 提交日期
%cr 提交日期,按多久以前的方式显示
%s 提交说明
网友评论