git tag

Posted zfdai

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git tag相关的知识,希望对你有一定的参考价值。

git tag  //查看tag
git tag test_tag c809ddbf83939a89659e51dc2a5fe183af384233    //在某个commit 上打tag
git tag
...
git push origin test_tag    //!!!本地tag推送到线上
...
git tag -d test_tag        //本地删除tag
git push origin :refs/tags/test_tag    //本地tag删除了,再执行该句,删除线上tag








以上是关于git tag的主要内容,如果未能解决你的问题,请参考以下文章

git将 tag push到远程

sh [Git标签命令] #git #tags

git tag的一些常用命令,记录以备忘git fetch origin tag

如何删除Git仓库中冗余的tag

git tag 重写

git本地tag和远程不匹配