mirror of
https://git.proxmox.com/git/systemd
synced 2025-06-06 02:45:51 +00:00
7 lines
117 B
Bash
Executable File
7 lines
117 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
git shortlog -s `git describe --abbrev=0`.. | \
|
|
awk '{ $1=""; print $0 "," }' | \
|
|
sort -u
|