mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
13 lines
469 B
Bash
13 lines
469 B
Bash
#!/usr/bin/env bash
|
|
previous_tag=0
|
|
for current_tag in $(git tag --sort=-creatordate)
|
|
do
|
|
if [ "$previous_tag" != 0 ];then
|
|
tag_date=$(git log -1 --pretty=format:'%ad' --date=short ${previous_tag})
|
|
printf "## ${previous_tag} (${tag_date})\n\n"
|
|
git log ${current_tag}...${previous_tag} --pretty=format:'* %s [View](https://bitbucket.org/projects/test/repos/my-project/commits/%H)' --reverse | grep -v Merge
|
|
printf "\n\n"
|
|
fi
|
|
previous_tag=${current_tag}
|
|
done
|