mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 17:51:22 +03:00
10 lines
197 B
Bash
Executable File
10 lines
197 B
Bash
Executable File
#!/bin/sh
|
||
set -eu
|
||
|
||
git shortlog -s `git describe --abbrev=0`.. | \
|
||
cut -c8- | \
|
||
sed 's/ / /g' | \
|
||
awk '{ print $$0 "," }' | \
|
||
sed -e 's/ / /g' | \
|
||
sort -u
|