Problem Statement
Why prefer annotated tags for releases and how do you push one?
Explanation
Annotated tags store tagger, date, and message—ideal for releases. Create with `git tag -a v1.2 -m "Release"` and push using `git push origin v1.2`.
Practice Sets
This question appears in the following practice sets:
