Command
git push --tags
Explanation
git push --tags is used to push tags to remote. It pushes the tags to remote.
Examples
Push all tags
git push --tags
Push specific tag
git push origin v1.0
git push --tags
git push --tags is used to push tags to remote. It pushes the tags to remote.
Push all tags
git push --tags
Push specific tag
git push origin v1.0