1 Star 0 Fork 0

songxing10000/basePod

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
updateLastTag.sh 653 Bytes
一键复制 编辑 原始数据 按行查看 历史
songxing10000 提交于 2020-11-12 21:54 . updateLastTag 1.1.1
#一个tag可能有错,多次修改后,删除之前的tag,把最新的做为此tag
# 拉取分支上现有的tags
git fetch --tags
#获取最新版本tag
LatestTag=$(git describe --tags `git rev-list --tags --max-count=1`)
# 提交缓存区
git add .
# 提交本地仓库,提交说明
git commit -m "updateLastTag ${LatestTag}"
# 提交到远程
git push origin
#在本地删除老的最新的tag
git tag -d ${LatestTag}
#在远程删除老的最新的tag
git push origin --delete $LatestTag
#将最新提交的commit作为tag标记在本地
git tag ${LatestTag}
#将最新提交的commit作为tag标记在远程
git push origin ${LatestTag}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/songxing10000/base-pod.git
git@gitee.com:songxing10000/base-pod.git
songxing10000
base-pod
basePod
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385