美文网首页
Github上tag的使用

Github上tag的使用

作者: dming1024 | 来源:发表于2022-08-15 17:08 被阅读0次

除了branch,github还是使用tag,展示软件或项目的进程。我的理解,tag就好比研发路上的标签,这里修改了一下,我标注并打一个标签。如果有很多的tags出现,那不妨再新建个branch,进行打标签(tags)。接下来我就讲述一下,一些tag的常用方法。

Main下直接tag

查看status

#找到有哪些需要push的文件
git status

添加文件

git add yourfiles
#或添加所有文件
git add *

注释

添加文件的描述

git commit -m "modified with abc"

push 文件

推上github

git push -u origin main

打上标签

根据注释信息,打上标签

git tag -a "v1" -m "modified with abc"

push 标签

git push origin v1

这个时候,就可以在github上,看到你的tag啦~

常用tag命令

删除

#本地删除
git tag -d 12345 

#github上删除
git push origin :refs/tags/12345

查看tag

# 查看本地tag
git tag 
#查看远程tag
git ls-remote --tags origin 

新建tag

#本地新建tag
git tag test 
#推上服务器
git push origin test

不同tag之间切换

git checkout v1

相关文章

网友评论

      本文标题:Github上tag的使用

      本文链接:https://www.haomeiwen.com/subject/abdpwrtx.html