mirror of
https://github.com/Dasharo/systemd.git
synced 2026-03-06 15:02:31 -08:00
7 lines
144 B
Bash
Executable File
7 lines
144 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
git shortlog -s `git describe --abbrev=0 --match 'v[0-9][0-9][0-9]'`.. | \
|
|
awk '{ $1=""; print $0 "," }' | \
|
|
sort -u
|