經過shell 腳本自動獲取最新tag,並輸入最新版本後,推到git上git
# 拉取分支上現有的tagsshell
git fetch --tags
echo -e "全部tag列表"
git tag -l -n
echo -e "${tagList}"
#獲取最新版本tag
LatestTag=$(git describe --tags `git rev-list --tags --max-count=1`)
echo -e "最新版本tag......"
echo -e "$LatestTag"
echo -e "請輸入要新增的版本號...... 如 v1.0.1"
#輸入tag名稱
read tagName
git tag ${tagName}
#推到分支上
git push origin ${tagName}