1
0
mirror of https://github.com/systemd/systemd synced 2024-07-08 20:15:55 +00:00
systemd/tools/git-contrib.sh

10 lines
450 B
Bash
Raw Normal View History

2017-12-24 06:53:20 +00:00
#!/bin/sh
# SPDX-License-Identifier: LGPL-2.1-or-later
2017-12-24 06:53:20 +00:00
set -eu
2017-04-15 04:16:23 +00:00
tag="$(git describe --abbrev=0 --match 'v[0-9][0-9][0-9]')"
git shortlog -s --group=author --group=trailer:Co-authored-by "${tag}.." |
sed -e 's/^[[:space:]]*[0-9]*[[:space:]]*//; /Weblate/ d; /dependabot\[bot\]/ d; s/ / /g; s/--/-/g; s/.*/\0,/' |
tr '\n' ' ' | sed -e "s/^/Contributions from: /g" -e "s/,\s*$/\n/g" | fold -w 72 -s |
sed -e "s/^/ /g" -e "s/\s*$//g"