100
git push origin <tag_name>
# not recommended git push --tags
80
git push --follow-tags
git config --global push.followTags true
76
git push <remote> <tag>
git push [[<repository> [<refspec>…]] <refspec>...
git push --tags <remote> # Or git push <remote> --tags
git push [--all | --mirror | --tags] [<repository> [<refspec>…]] --tags
68
$ git tag # see tag lists $ git push origin <tag-name> # push a single tag $ git push --tags # push all local tags