来自git log的自定义更改日志

时间:2013-11-08 06:58:37

标签: git shell sed grep git-log

我需要帮助才能从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命令。

2 个答案:

答案 0 :(得分:0)

我将遵循的步骤是:

  1. 使用自定义格式仅输出标题(前缀为TITLE:)和正文
  2. 编写一个sed脚本,查找TITLE:,存储它,然后查找ISSUE=,并输出两者
  3. 所以这就是我在有限的时间里提出来的。这不是你要求的,但它是一个起点:

    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