From: Pieter Lexis Date: Mon, 13 Apr 2015 13:03:02 +0000 (+0200) Subject: Output more info with git-to-changelog X-Git-Tag: dnsdist-1.0.0-alpha1~248^2~98^2~10^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7c7ff19b2973c87855ddf7b3f0260b79dda80ff0;p=thirdparty%2Fpdns.git Output more info with git-to-changelog --- diff --git a/build-scripts/git-to-changelog b/build-scripts/git-to-changelog index a474dbb87d..ea29d47eda 100755 --- a/build-scripts/git-to-changelog +++ b/build-scripts/git-to-changelog @@ -3,6 +3,6 @@ if [ "$1" = "-" ]; then cat else - git log --pretty=format:'- [commit %h](https://github.com/PowerDNS/pdns/commit/%h): %s' "$@" |\ + git log --no-merges --pretty=format:'- [commit %h](https://github.com/PowerDNS/pdns/commit/%h): %s (%an)' "$@" |\ sed -r 's!#([[:digit:]]+)![ticket #\1](https://github.com/PowerDNS/pdns/issues/\1)!g;' fi