]> git.ipfire.org Git - thirdparty/pdns.git/blame - build-scripts/git-to-changelog
Merge pull request #7820 from pieterlexis/systemd-no-setuid
[thirdparty/pdns.git] / build-scripts / git-to-changelog
CommitLineData
b93627a6 1#!/bin/sh
4d3b3c25 2
062ea940
PL
3if [ "$1" = "-" ]; then
4 cat
5else
7c7ff19b 6 git log --no-merges --pretty=format:'- [commit %h](https://github.com/PowerDNS/pdns/commit/%h): %s (%an)' "$@" |\
80c723fa 7 perl -pe 's!#([[:digit:]]+)![ticket #\1](https://github.com/PowerDNS/pdns/issues/\1)!g;'
062ea940 8fi