Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.