# File lib/r10k/svn/remote.rb, line 23
  def branches
    argv = ['ls', "#{@baseurl}/branches"]
    argv.concat(auth)
    text = svn(argv)
    text.lines.map do |line|
      line.chomp!
      line.gsub!(%r[/$], '')
      line
    end
  end