Which command creates an annotated tag named v1.0.0?

git tag v1.0.0 -m “Release”
git tag -a v1.0.0 -m “Release”
git tag —annotate v1.0.0

How do you list tags with their annotations?

git tag -a
git tag -n
git show-tags

Which command shows details of a tag and the commit it points to?

git tag show v1.0.0
git show v1.0.0
git log v1.0.0

How do you push a single tag named v1.0.0 to origin?

git push origin v1.0.0
git push —tag v1.0.0
git push —single-tag origin v1.0.0

What does git push --tags do?

Deletes all tags on the remote
Pushes all local tags to the remote
Creates annotated tags automatically