git tag
# or with filters
git tag -l "v1.*"
git tag -a v1.0 -m "text about release"
# don’t supply the -a, -s, or -m options
git tag v1.4-lw
git show v1.0.0
git tag -a v1.2 <commit checksum "9fceb02">
git push origin v1.5
git checkout -b version2 v2.0.0