The tag's name
The SHA of the node the tag points to
The repo the tag belongs to
The numeric revision the tag points to
The tag type
Create a tag object.
# File lib/hglib/repo/tag.rb, line 17
def initialize( repo, tag:, node:, rev: 0, type: '' )
@repo = repo
@name = tag
@node = node
@rev = rev
@type = type
end