I have cloned a remote Git repository to my laptop, then I wanted to add a tag so I ran
git tag mytag master
When I run git tag
git tag
To push a single tag:
git push origin
And the following command should push all tags (not recommended):
git push --tags