我需要帮助才能从git log创建自定义格式的更改日志。
以下是git日志的编写方式。
commit 2f5719d373e284e4473a5a3f229cbf163f6385fe
Author: Adrian <adrian@mycompany.com>
Date: Tue Nov 5 17:23:51 2013 +0100
This is the title of the commit
Some description about the commit, row 1
Some description about the commit, row 2
Some description about the commit, row 3
ISSUE=BZ1020
ISSUE=BZ1022
Change-Id: I1e15e12da28692e09c377c084dc439fec1d58f4c
我希望它格式化的方式是提取title
行和ISSUE=BZ
行并创建一个不错的更改日志。我首先想要这样的问题,首先是问题编号,然后是标题。我还想支持几个ISSUE=BZ
标签,以防有人在一次提交中修复了几个错误。当然,并非所有提交都包含已修复的错误,因此我想完全省略这些提交。
BZ1020 This is the title of the commit
BZ1022 This is the title of the commit
到目前为止,我已设法使用此命令提取所有修复但未标题的问题:
git log <old version>..HEAD | grep -i 'ISSUE=BZ' | sed 's/.*=//g'
农产品:
BZ1020
BZ1022
任何想法如何进行?我必须告诉你,我是初学者,使用sed
命令。
答案 0 :(得分:0)
我将遵循的步骤是:
TITLE:
)和正文TITLE:
,存储它,然后查找ISSUE=
,并输出两者所以这就是我在有限的时间里提出来的。这不是你要求的,但它是一个起点:
git log --format='format:TITLE:%s%n%b'|sed -ne '/^TITLE:/h;s/ISSUE=//;t found;b;: found;G;p'
答案 1 :(得分:0)
使用awk
可以这样做:
git log <old version>..HEAD | awk -F= '/title/ {a=$0} /ISSUE=BZ/ {b=$2 a;gsub(/ +/," ",b);print b}'
BZ1020 This is the title of the commit
BZ1022 This is the title of the commit