Tags

Tags sample workflow

git checkout master

# Lightweight tag
git tag my_lightweight_tag

# Annotated tag
git tag -a v1.0 -m ‘Version 1.0’
git tag

git push origin --tags

Additional resources

https://git-scm.com/book/en/Git-Basics-Tagging