mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 09:21:26 +03:00
7c34a0a306
For some reason git shortlog spits out non-breaking spaces, let's remove that, as for our purposes (inclusion in NEWS) we really want breaking (i.e. normal) spaces.
9 lines
193 B
Bash
Executable File
9 lines
193 B
Bash
Executable File
#!/bin/sh -eu
|
||
|
||
git shortlog -s `git describe --abbrev=0`.. | \
|
||
cut -c8- | \
|
||
sed 's/ / /g' | \
|
||
awk '{ print $$0 "," }' | \
|
||
sed -e 's/ / /g' | \
|
||
sort -u
|