Git
Add a tag to a branch
Want to know how to add a tag to a branch for new releases? This article will show you how.
Add the tag with a message
git tag -a v1.4 -m 'message'
Push the tag
git push origin --tags
# OR
git push origin v1.4
git tag -a v1.4 -m 'message'
git push origin --tags
# OR
git push origin v1.4