I'm trying to create a tag with this code (irb executed in the git repository folder):
r = Grit::Repo.new('.')
...
tagger = {}
tagger[:name] = 'blah'
tagger[:email] = 'blah@email.net'
tagger[:type] = '-a'
tagger[:message] = 'Message for my tag'
t = Grit::Tag.create_tag_object(r, tagger)
=> {:sha=>"495602bb9799b5f9259f219a5591853bd83dc368", :size=>77}
But after exiting from the interpreter if I issue a git tag -l nothing is outputted.
Any idea?