opnsense-src/scripts/gitlog2changelog.sh
Dag-Erling Smørgrav 2b7d40ea0c Import unifdef 2.12
2023-08-21 19:33:42 +02:00

9 lines
191 B
Bash
Executable file

#!/bin/sh
line="---------------------------------------------------"
git log --no-merges -M --stat \
--pretty=format:"$line%n%ai %an <%ae>%n%n%s%n%n%b" |
uniq | fold -s
echo
echo $line