How do you push a tag to a remote repository using Git?
To push a single tag: git push origin <tag_name> And the following command should push all tags (not recommended): # not recommended git push –tags
To push a single tag: git push origin <tag_name> And the following command should push all tags (not recommended): # not recommended git push –tags