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
|
|
|
|
|
|
2015-01-11 21:58:19 +01:00
|
|
|
git log --pretty=format:'* %s \n (%h, @%aN)' "$since" | egrep 'fixes #\d|ref #\d' | sed s/\\\\n/\\$'\n'/
|
2014-12-07 08:58:36 +01:00
|
|
|
|