# File lib/gitlab_git/repository.rb, line 89
      def local_branches
        rugged.branches.each(:local).map do |branch|
          Branch.new(self, branch.name, branch.target)
        end
      end