Hi there, I have been running: repo = Rugged::Config.global type = "commit" tagname = "v99.99.2" username = repo["user.name"] email = repo["user.email"] message = "this is the message for the annotated tag" tag_contents = "object f849f9e28c7f36a826d4b451efb16516c0c3acc2\ntype #{type}\ntag # {tagname}\ntagger #{username} <#{email}> #{Time.new.to_i} +0000\n\n#{message}" #puts tag_contents #puts "****************************" #puts command executecommand = "printf \"#{tag_contents}\" | git mktag" Open3.popen3(executecommand) do |stdin, stdout, stderr, wait_thr| exit_stats = wait_thr.value errors = stderr.readlines puts "Errors are #{errors}" unless exit_stats.success? raise Exception, 'There was an error encountered' end signature_file_sha = stdout.readline.chomp puts "signature sha is #{signature_file_sha}" end on my local machine and it runs successfully. I have tried to run it on a vm with git 2.0.4 but keep getting char 7 could not verify object error message. Any suggestions as to why would be greatly appreciated. Thanks, Daniel -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html