创建标签
bash
git tag v1.0 # 对head指向的commit创建标签
git tag v1.1 commit_id # 对指定的commit创建标签
git tag v2.0 -a -m "标签注释" commit_id # 创建注释标签
查看标签
bash
git tag -l 'v1*' # 查看标签,匹配v1开头的
git show v2.0 # 查看标签详细信息,包含了diff
推送标签
bash
git remove -v # 查看本地库与远程库的对应信息
origin git@gitee.com:stree_line/test.git (fetch)
origin git@gitee.com:stree_line/test.git (push)
git push origin v2.0 # 将标签推送到远程库,origin是远程库名
git push origin --tags # 推送所有标签到远程库
删除标签
bash
git tag -d v2.0 # 只删除标签,不删除commit
git push origin -d v2.0 # 删除远程库标签
创建发行版
在github/gitee上选择到对应的标签,根据提示操作即可