1 Star 0 Fork 0

youpu2020/stringtie

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tag_git.sh 335 Bytes
一键复制 编辑 原始数据 按行查看 历史
Geo Pertea 提交于 2021-03-09 17:49 . fixed v2.1.5 release
#!/bin/bash -e
ver=$(fgrep '#define VERSION ' stringtie.cpp)
ver=${ver#*\"}
ver=${ver%%\"*}
if [[ "$1" == "delete" || "$1" == "del" ]]; then
echo "Deleting tag v$ver .."
git tag -d v$ver
git push origin :refs/tags/v$ver
exit
fi
echo "Tagging with v$ver"
git checkout master
git tag -a "v$ver" -m "release $ver"
git push --tags
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/youpu2020/stringtie.git
git@gitee.com:youpu2020/stringtie.git
youpu2020
stringtie
stringtie
master

搜索帮助