mirror of
https://github.com/opnsense/src.git
synced 2026-02-18 18:20:26 -05:00
9 lines
191 B
Bash
Executable file
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
|