Git tags
Reference: git tagging documentation
List tags
# List all tags
git tag
# Regex T_T
git tag -l "v1.8.5*"
# Show a specific tag
git show v1.4.5
Annotated vs Lightweight tags
# Annotated
git tag -a v1.4 -m "release 1.4"
# Lightweight
git tag v1.4-lw
Tag & remote
# Push tags
git push origin v1.4