# File lib/git/lib.rb, line 200
    def config_list
      hsh = {}
      command_lines('config', ['--list']).each do |line|
        (key, value) = line.split('=')
        hsh[key] = value
      end
      hsh
    end