syncthing/changelog.sh

10 lines
178 B
Bash
Raw Normal View History

2014-12-07 08:58:36 +01:00
#!/bin/bash
since="$1"
if [[ -z $since ]] ; then
since="$(git describe --abbrev=0 HEAD^).."
fi
git log --pretty=format:'* %s (%h, @%aN)' "$since" | egrep 'fixes #\d|ref #\d'
2014-12-07 08:58:36 +01:00