What is a git tag?
I'll answer
Earn 20 gold coins for an accepted answer.20
Earn 20 gold coins for an accepted answer.
40more
40more
Works at the Wildlife Conservation Society, Lives in Nairobi, Kenya.
Tags in git are lightweight references that point to an SHA hash of a commit. Unlike branches, they are not mutable and once created should not be deleted. Tags may be lightweight (in which case they refer to the commit directly) or annotated (in which case they point to a tag object which points to the commit).Apr 26, 2011
2023-06-20 01:19:27
评论(499)
Helpful(122)
Helpful
Helpful(2)

Owen Martin
QuesHub.com delivers expert answers and knowledge to you.
Tags in git are lightweight references that point to an SHA hash of a commit. Unlike branches, they are not mutable and once created should not be deleted. Tags may be lightweight (in which case they refer to the commit directly) or annotated (in which case they point to a tag object which points to the commit).Apr 26, 2011