mirror of
https://git.proxmox.com/git/systemd
synced 2025-06-06 02:45:51 +00:00
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
|