class Git::Object::Commit

def check_commit

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