赞
踩
鱼的记忆就是合并代码的时候总是忘了打tag,合并完了才发现需要补tag。。
需要给指点commit补上tag并提交
git tag tagName commitId
git push origin tagName
tag会加在当前分支的最后一次提交上(截止打tag的最后一次提交哈)。
git tag tagName
git tag -a tagName -m "注释"
git tag -a tagName commitId -m "注释"
没有注释,别加-a
,会报错,即打tag失败
git tag tagName -m "注释"
git tag tagName commitId -m "注释"
git tag tagName -m "注释" commitId
tag还没提交,只需删除本地tag
git tag -d tagName
git tag --delete tagName
tag已经提交到远端
git push origin -d tagName
git push -d origin tagName
git push origin --delete tagName
git push --delete origin tagName
git push origin :refs/tags/tagName
git tag
git tag -l
git tag --list
本地所有tag
git tag -l "v1.1.*"
匹配v1.1.x的tag
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。