其他分享
首页 > 其他分享> > git tag All In One

git tag All In One

作者:互联网

git tag All In One

# 查看所有 tags
$ git tag

git delete tag

# 删除 tag v1.1.1 ✅
$ git tag -d v1.1.1
$ git push origin :refs/tags/v1.1.1


# 删除 tag v1.1.2 ✅
$ git tag -d v1.1.2
$ git push origin :refs/tags/v1.1.2


publish github package

https://www.cnblogs.com/xgqfrms/p/16565524.html

refs

https://github.com/xgqfrms/wcui/issues/9
https://github.com/xgqfrms/github-fe-oss-project-template/issues/1


Flag Counter

©xgqfrms 2012-2020

www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!

原创文章,版权所有©️xgqfrms, 禁止转载

标签:git,github,v1.1,tag,xgqfrms,com
来源: https://www.cnblogs.com/xgqfrms/p/16586882.html