Git tagging

Note for me, how to tag with git. Because I always forget it! git tag -a v1.4 -m ‘version 1.4’ git tag The first line creates a tag with the annotation (-a) v1.4 and the message (-m) “version 1.4”. And this line pushes the tag to origin master. git push –tags