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