git tags 管理

Posted toyflivver

tags:

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

  1. 新建标签: git tag -a V1.1 -m "some thing" (新建标签前请先commit代码)
  2. 推送标签: git push --tags (推送标签前请先推送代码)
  3. 删除本地标签: git tag -d V1.1
  4. 删除远程标签: git push origin :refs/tags/V1.1
  5. 查看标签: git tag -l (会列出一个列表)
  6. 查看标签详情: git show v0.1.1 (查看特定标签的详情)

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

在Visual Studio 中使用git——标记(Tag)管理

源代码管理工具-GIT

idea git tag 管理

git管理修改

git版本管理,git tag

git版本管理,git tag