建立標籤git
git tag -a v0.4 -m '這是標籤的描述'
查看標籤code
git tag git show v0.4
刪除標籤it
git tag -d v0.4
推送推送
git push origin v0.4