After updating a tag's description following the command below:
git tag <tag name> <tag name> -f -m "<new message>"
How can I push the update to the that tag?
After updating a tag's description following the command below:
git tag <tag name> <tag name> -f -m "<new message>"
How can I push the update to the that tag?
Try with
git push origin master --tags
From the manual
man git push
--tags
All refs under refs/tags are pushed, in addition to refspecs explicitly listed on the command line.