Browse Source

Script for generating the change log

Jakob Borg 11 years ago
parent
commit
87abea0ba3
1 changed files with 9 additions and 0 deletions
  1. 9 0
      changelog.sh

+ 9 - 0
changelog.sh

@@ -0,0 +1,9 @@
+#!/bin/bash
+
+since="$1"
+if [[ -z $since ]] ; then
+	since="$(git describe --abbrev=0 HEAD^).."
+fi
+
+git log --pretty=format:'* %h %s (%an)' "$since" | grep '(fixes #'
+