Something that is done with git repositories is to use the tag object. This can be used to tag a commit with any kind of string and can be used to mark versions. You can see that tags in a repo with the git tag command, which returns all the tags.
It's easy to check out a tag. For example, if there is a tag v1.1 you can check that tag out to a branch like this:
git chechout checkout -b v1.1
As it's a top level object, you'll see the whole history to that commit, as well as be able to run diffs, make changes, and merges.
Not only that, but a tag persists, even if the branch that it was on has been deleted without being merged back into the main line.
