This repository has been archived on 2026-05-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2014-12-07 08:58:36 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
since="$1"
|
|
|
|
|
if [[ -z $since ]] ; then
|
|
|
|
|
since="$(git describe --abbrev=0 HEAD^).."
|
|
|
|
|
fi
|
|
|
|
|
|
2014-12-07 09:16:52 +01:00
|
|
|
git log --pretty=format:'* %s (%h, @%aN)' "$since" | egrep 'fixes #\d|ref #\d'
|
2014-12-07 08:58:36 +01:00
|
|
|
|