打标签
git tag -a 0.1 -m "version 0.1" //0.1为版本号,version 0.1是版本说明
提交标签到远程服务器上
git push origin --tags //参数表示提交所有tag至服务器端
删除标签的命令
git tag -d 0.1
删除远端服务器的标签
git push origin :refs/tags/0.1
git tag -a 0.1 -m "version 0.1" //0.1为版本号,version 0.1是版本说明
git push origin --tags //参数表示提交所有tag至服务器端
git tag -d 0.1
git push origin :refs/tags/0.1
转载于:https://my.oschina.net/mcyy568/blog/818597