]> git.pld-linux.org Git - projects/rc-scripts.git/blame - changelog.sh
fix RC_LOGGING=no daemon --makepid --fork write proper pidfile
[projects/rc-scripts.git] / changelog.sh
CommitLineData
890a210e 1#!/bin/sh
e327b68b 2# Run this to generate ChangeLog.
890a210e 3
78fe1608
KK
4[ -e .git/shallow ] && git fetch --unshallow
5git log --format='%+ai [%h] %aN <%ae>%n%n%x09* %s' --stat | sed '1d' > ChangeLog
890a210e
ER
6
7# obfuscate emails <user@domain> and (user@domain)
8sed -i -e 's,\([<(].*\)@\(.*[)>]\),\1/at/\2,g' ChangeLog
This page took 0.073495 seconds and 4 git commands to generate.