# File lib/grit/git-ruby/repository.rb, line 126
      def in_packs?(sha_hex)
        # try packs
        packs.each do |pack|
          return true if pack[sha_hex]
        end
        false
      end