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