标签:jpg 信息 git 存储 图片 利用 推送 push mamicode
打标签
git tag V1.0
git tag V1.0 f52c633 # 利用commit id给历史中版本打标签
git tag -a V1.0 -m "version 1.0" # -a 指定标签名
# -m 指定说明性文字
查看标签
git tag # 查看所有标签
git show <tagname> # 查看标签的详细信息
删除标签
git tag -d V1.0
创建的标签都只存储在本地,不会自动推送到远程。如果要推送某个标签到远程
git push origin <tagname>
git push origin tags # 一次性推送全部尚未推送到远程的本地标签
删除远程标签
a.先删除本地标签
git tag -d <tagname>
b.在删除远程标签
git push origin :refs/tags/<tagname>
标签:jpg 信息 git 存储 图片 利用 推送 push mamicode
原文地址:https://www.cnblogs.com/huangdengtao/p/13246917.html