Skip to content

Instantly share code, notes, and snippets.

@hfs
Created October 12, 2016 09:53
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hfs/0ff1cf243b163bd551ec22604ce702a5 to your computer and use it in GitHub Desktop.
Save hfs/0ff1cf243b163bd551ec22604ce702a5 to your computer and use it in GitHub Desktop.
Convert git log into changelog in Debian format
#!/bin/bash
#
# Convert git log into changelog in Debian format
#
# Tags in format 1.2.3-4 become version entries. Log entries between them
# become changelog entries. Merge commits are not excluded, so you probably
# have to clean up the result manually.
RE_VERSION='^v\?[0-9]\+\([.-][0-9]\+\)*'
# Assume the name of the current directory is the package name
PACKAGE=${PWD##*/}
function logentry() {
local previous=$1
local version=$2
echo "$PACKAGE ($version) unstable; urgency=low"
echo
git --no-pager log --format=" * %s" $previous${previous:+..}$version
echo
git --no-pager log --format=" -- %an <%ae> %aD" -n 1 $version
echo
}
git tag --sort "-version:refname" | grep "$RE_VERSION" | (
read version; while read previous; do
logentry $previous $version
version="$previous"
done
logentry "" $version
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment