赞
踩
给当前commitID打tag git tag -a "v1.0.0" -m "注释"
给历史commitID打tag git tag -a "v1.0.0" -m "注释" commitID
删除本地tag git tag -d v1.0.0
删除远程tag
git tag -d v1.0.0
git push origin :refs/tags/v1.0.0
# 或者
git push origin --delete tag
推送tag到远程
git push origin v1.0.0
git push origin --tags
列出仓库的所有标签 git tag
列出仓库的所有标签和说明 git tag -n
查看标签信息 git show v2.0.0
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。