标签:efi print 搜索 comm -- code 仓库 pretty tty
1、列出tags
git tag -l
git tag -l ‘fff*‘ //搜索符合模式的标签
2、新增tag
git tag -a v0.9 85fc7e7
git tag -a tagname commitid
3、推送tag到远程仓库
git push --tags // push所有tags
git push origin tagname //推送单个tag到仓库
4、 删除tag
git tag -d tagName 删除tag
标签:efi print 搜索 comm -- code 仓库 pretty tty
原文地址:https://www.cnblogs.com/developer-qin/p/13542276.html