class Git::Object::Commit

def check_commit

see if this object has been initialized and do so if not
def check_commit
  return if @tree
  data = @base.lib.cat_file_commit(@objectish)
  set_commit(data)
end