mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-09 23:00:58 +00:00
12 lines
278 B
Bash
Executable File
12 lines
278 B
Bash
Executable File
#!/bin/bash
|
|
|
|
since="$1"
|
|
if [[ -z $since ]] ; then
|
|
since="$(git describe --abbrev=0 HEAD^).."
|
|
fi
|
|
|
|
git log --reverse --pretty=format:'* %s, @%aN)' "$since" | egrep 'fixes #\d|ref #\d' | sed 's/)[,. ]*,/,/' | sed 's/fixes #/#/g' | sed 's/ref #/#/g'
|
|
|
|
git diff "$since" -- AUTHORS
|
|
|