标签:删除 push 远程 tags pre 命令 tag http 条件
/// 查看标签 // 打印所有标签 git tag // 打印符合检索条件的标签 git tag -l 1.*.* // 查看对应标签状态 git checkout 1.0.0 /// 创建标签(本地) // 创建轻量标签 git tag 1.0.0-light // 创建带备注标签(推荐) git tag -a 1.0.0 -m "这是备注信息" // 针对特定commit版本SHA创建标签 git tag -a 1.0.0 0c3b62d -m "这是备注信息" /// 删除标签(本地) git tag -d 1.0.0 /// 将本地标签发布到远程仓库 // 发送所有 git push origin --tags // 指定版本发送 git push origin 1.0.0 /// 删除远程仓库对应标签 // Git版本 > V1.7.0 git push origin --delete 1.0.0 // 旧版本Git git push origin :refs/tags/1.0.0
参阅文档地址:
https://www.jianshu.com/p/8956a9cfa9da
标签:删除 push 远程 tags pre 命令 tag http 条件
原文地址:https://www.cnblogs.com/jack-jt-z/p/10594879.html