If you've created a tag on the local repository and want to push it to the origin repo, it's quite easy!
To update all the tags, just type:
git push --tags
Otherwise, type the following to update a specific tag:
git push --tags stable
Viola!
Mainly notes to future-Twig (and for anyone else who may find them useful)
If you've found one or more of my blog posts helpful, why not say thanks by buying me a coffee or beer?
If you've created a tag on the local repository and want to push it to the origin repo, it's quite easy!
To update all the tags, just type:
git push --tags
Otherwise, type the following to update a specific tag:
git push --tags stable
Viola!