1 Star 0 Fork 1

fastdgiot / mysql-otp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
changelog.sh 467 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash
# Author: Andrey Nikishaev, Viktor Söderqvist
LOG_FORMAT='* %s [%ci]'
echo "Change log"
echo "=========="
git tag -l | sort -V -u -r | while read TAG ; do
echo
if [ $NEXT ]; then
echo "$NEXT"
echo "-----"
fi
GIT_PAGER=cat git log --no-merges --format="$LOG_FORMAT" $TAG..$NEXT
NEXT=$TAG
done
FIRST=$(git tag -l | head -1)
echo
echo "$FIRST"
echo "-----"
GIT_PAGER=cat git log --no-merges --format="$LOG_FORMAT" $FIRST
Clojure
1
https://gitee.com/fastdgiot/mysql-otp.git
git@gitee.com:fastdgiot/mysql-otp.git
fastdgiot
mysql-otp
mysql-otp
master

搜索帮助