Complete the command to create a lightweight tag named 'v1.0'.
git tag [1] v1.0
Lightweight tags are created without any options, just the tag name.
Complete the command to create an annotated tag named 'v2.0' with a message.
git tag [1] v2.0 -m "Release version 2.0"
The -a option creates an annotated tag which can include a message.
Fix the error in the command to create an annotated tag with a message.
git tag -a v3.0 [1] "Release version 3.0"
The -m option is needed to specify the message for the annotated tag.
Fill both blanks to create an annotated tag 'v4.0' with a message and push it to origin.
git tag [1] v4.0 [2] "Release v4.0" git push origin v4.0
Use -a to create an annotated tag and -m to add a message.
Fill all three blanks to list all tags, show details for 'v2.0', and delete the lightweight tag 'v1.0'.
git tag [1] git show [2] git tag -d [3]
git tag -l lists tags, git show v2.0 shows details, and git tag -d v1.0 deletes the tag.