GitTag
OriginalMarch 1, 2019Less than 1 minute
Conclusion
New tag (pointing to the latest commit_id)
git tag <tag_name>
New tag (pointing to a specific commit_id)
git tag <tag_name> <commit_id>
view all tags
git tag
Show details of a tag
git show <tag_name>
New tag with description
git tag -a <tag_name> -m "Caption" <commit_id>