侧边栏壁纸
博主头像
Eoser's page!博主等级

@学习@生活@自己

  • 累计撰写 113 篇文章
  • 累计创建 29 个标签
  • 累计收到 0 条评论

目 录CONTENT

文章目录

Git tag相关

eoser
2023-04-18 / 0 评论 / 0 点赞 / 0 阅读 / 352 字

添加TAG

git tag 【TAG名字】

查看TAG

git tag -l -n

删除TAG

git tag -d 【TAG名字】

Push TAG 到服务器

git push origin --tags

搜索TAG

git tag -l 'v0.*'

获取最新的 TAG

git describe --abbrev=0 --tags

0

评论区