Answer Posted / Abhinav Bailey
To create a tag in Git, use the command `git tag <tag_name>` where `<tag_name>` is the desired name for your tag. To create an annotated tag and associate it with a specific commit, you can use the command `git tag -a <tag_name> -m '<message>'`.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers