The Information Manager From Hell
[Git Tags]
cocacola0
2022. 11. 14. 15:48
# push all tags
$ git push origin --tags
# push one tag
$ git push origin {tag\_version}
# git annotated tag
$ git tag -a v1.0 -m "version1.0"
# git light tag
$ git tag "v.10"