网站怎么做 流程,建网站空间的详细说明,seo变现培训,济南工程网站建设创建标签
git tag v1.0 # 对head指向的commit创建标签
git tag v1.1 commit_id # 对指定的commit创建标签
git tag v2.0 -a -m 标签注释 commit_id # 创建注释标签查看标签
git tag -l v1* # 查看标签#xff0c;匹配v1开头的
git show v2.0 # 查看标签详细信息…创建标签
git tag v1.0 # 对head指向的commit创建标签
git tag v1.1 commit_id # 对指定的commit创建标签
git tag v2.0 -a -m 标签注释 commit_id # 创建注释标签查看标签
git tag -l v1* # 查看标签匹配v1开头的
git show v2.0 # 查看标签详细信息包含了diff推送标签
git remove -v # 查看本地库与远程库的对应信息
origin gitgitee.com:stree_line/test.git (fetch)
origin gitgitee.com:stree_line/test.git (push)
git push origin v2.0 # 将标签推送到远程库origin是远程库名
git push origin --tags # 推送所有标签到远程库删除标签
git tag -d v2.0 # 只删除标签不删除commit
git push origin -d v2.0 # 删除远程库标签创建发行版
在github/gitee上选择到对应的标签根据提示操作即可