QGIS/scripts/create_changelog.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
493 B
Bash
Raw Normal View History

#!/bin/sh
# Convert git log to GNU-style ChangeLog file.
# (C) Chris
if test -e ".git"; then
git log --date-order --date=short | \
sed -e '/^commit.*$/d' | \
awk '/^Author/ {sub(/\\$/,""); getline t; print $0 t; next}; 1' | \
sed -e 's/^Author: //g' | \
sed -e 's/>Date: \([0-9]*-[0-9]*-[0-9]*\)/>\t\1/g' | \
2014-02-20 09:59:58 +01:00
sed -e 's/^\(.*\) \(\)\t\(.*\)/\3 \1 \2/g' | \
sed -e 's/[ ]*$//g' > ChangeLog
exit 0
else
echo "No git repository present."
exit 1
fi