参考:https://www.shellhacks.com/git-create-tag-push-tag-to-remote/
push 所有 tag
git push origin --tags
push 指定的 tag
git push origin <tag_name>
参考:https://www.shellhacks.com/git-create-tag-push-tag-to-remote/
git push origin --tags
git push origin <tag_name>