If you’re releasing gems (or any other kinds of packages), git tags are a useful way to track those release milestones in the source code repo.
Creating a tag is easy:
git tag v1.0.0
So is pushing it to a remote:
git push origin v1.0.0
The Git Basics - Tagging section in the online git book is an easy-to-read overview of the various tag commands.