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