git中tag怎么改名-LMLPHP

本文操作环境:Windows10系统、Git2.30.0版、Dell G3电脑。

git中tag怎么改名

进入项目文件夹

git tag 查看标签名

可以看到我第一个标签,我们对此进行更改

git中tag怎么改名-LMLPHP

git tag v3.0 v1.0

来重命名标签

git中tag怎么改名-LMLPHP

git tag 查看结果

git中tag怎么改名-LMLPHP

1.新标签名写在前面

2.旧标签名依然存在,删除就好

扩展知识:

标签常用指令

GIT 中的标签分为两种,一种是轻量标签(lightweight tag),一种是附注标签(annotated tag)。以下是一些常用的与标签相关的命令:

  • git tag <lightweght_name>:为当前分支所在的提交记录打上轻量标签。

  • git tag <lightweght_name> <commit SHA-1 value>:为某次具体的提交记录打上轻量标签。

  • git tag -a <anotated_name> -m <tag_message>:为当前分支所在的提交记录打上附注标签。

  • git tag:列出所有的标签名。

  • git tag -d <tag_name>:删除某个标签,本质上就是移除 .git/refs/tags/ 中对应的文件。

  • git show <tag_name>:显示标签对应提交记录的具体信息。

  • git push <remote> <tag_name>:推送某个标签到远程仓库。

  • git push <remote> --tags:推送所有标签到远程仓库。

  • git push <remote> --delete <tag_name>:删除远程仓库中的某个标签。

列出tag

$ git tag
v2.1
登录后复制

git tag 可以带一个 -l 的参数,支持通配符

例如:

git tag -l version1.*
登录后复制

这样就只会列出1.几的版本。

git tag -l v*
登录后复制

这样就只会列出v打头的版本。

查看某个tag的详情

$ git show v1.4
tag v1.4
Tagger: Scott Chacon 
Date: Mon Feb 9 14:45:11 2009 -0800
my version 1.4
commit 15027957951b64cf874c3557a0f3547bd83b3ff6
Merge: 4a447f7… a6b4c97…
Author: Scott Chacon 
Date: Sun Feb 8 19:02:46 2009 -0800
Merge branch ‘experiment’
登录后复制

删除tag

删除本地仓库的 tag

命令:

git tag -d v2.0
登录后复制

就把名为 v2.0 的tag 删除了。

推荐学习:《Git教程

以上就是git中tag怎么改名的详细内容,更多请关注Work网其它相关文章!

09-17 17:04