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