]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Output more info with git-to-changelog
authorPieter Lexis <pieter.lexis@powerdns.com>
Mon, 13 Apr 2015 13:03:02 +0000 (15:03 +0200)
committerPieter Lexis <pieter.lexis@powerdns.com>
Mon, 13 Apr 2015 13:03:02 +0000 (15:03 +0200)
build-scripts/git-to-changelog

index a474dbb87d77b5557a18a1db4a5e59bdd559f278..ea29d47eda904a650342a88f0f5826d7d3db0e92 100755 (executable)
@@ -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