/
timaliev
/
bin-scripts
Обзор
Документация
Войти
/
timaliev
/
bin-scripts
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
develop
gh-relnotes
16 строк
289 B
Tim Aliev
Recent updates (too many)
03 фев 2024, 01:28
03 фев 2024, 01:28
fac6ff6
Код
Авторство
О чём код?
#!/usr/bin/env bash export files=$(git ls-tree -r master --name-only) export rep=$(git remote -v|head -1|cut -f2 | cut -d. -f1,2)/blob/master echo echo '## Release Notes' echo for i in ${files} do echo "[${i}](${rep}/${i})" git log --pretty=format:'* %h : %s' $i echo echo done