How to create tag?
Answer / 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 |
What is the difference between rebasing and merge in git?
How will you know in git if a branch has already been merged into master?
In git, how would you return a commit that has just been pushed and made open?
Why GIT better than Subversion?
Can you explain the gitflow workflow?
What is the difference between git pull and git fetch?
Why is it advisable to create an additional commit rather than amending an existing commit?
What is ‘bare repository’ in GIT?
What is a ‘conflict’ in git?
What is the function of ‘git config’?
What is “Staging Area” or “Index” in GIT?
What are git stash and git stash drop?