xref: /freebsd/contrib/unifdef/scripts/gitlog2changelog.sh (revision c8e7f78a3d28ff6e6223ed136ada8e1e2f34965e)
1#!/bin/sh
2
3line="---------------------------------------------------"
4
5git log --no-merges -M --stat \
6    --pretty=format:"$line%n%ai %an <%ae>%n%n%s%n%n%b" |
7uniq | fold -s
8echo
9echo $line
10