class Git::Base

def commit_all(message, opts = {})

calling @git.add() on them.
but automatically adds all modified files without having to explicitly
commits all pending changes in the index file to the git repository,
def commit_all(message, opts = {})
  opts = {:add_all => true}.merge(opts)
  self.lib.commit(message, opts)
end