Git - Tagging
What happens when you run
git tag -a v1.0 abc123 -m "Release 1.0"?git tag -a v1.0 abc123 -m "Release 1.0"?git tag -a v1.0 abc123 -m "Release 1.0" creates an annotated tag named v1.0 on the commit with hash abc123 and attaches the message "Release 1.0".-a flag specifies an annotated tag, which stores extra metadata including the message.v1.0 on commit abc123 with the message "Release 1.0" -> Option B15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions