How to only push a specific tag to remote? [duplicate]

You can simply use:

git push origin tag_a

Alternatively (mainly to solve tag/branch name clashes), you could use:

git push origin refs/tags/tag_a

Leave a Comment