changelog.sh 178 B

123456789
  1. #!/bin/bash
  2. since="$1"
  3. if [[ -z $since ]] ; then
  4. since="$(git describe --abbrev=0 HEAD^).."
  5. fi
  6. git log --pretty=format:'* %s (%h, @%aN)' "$since" | egrep 'fixes #\d|ref #\d'