Search notes:

git show-index

Show package archive index.
cd "$(git rev-parse --git-dir)"
find objects/pack -name 'pack-*.idx' | while read p; do
  git show-index < $p | cut -f 2 -d ' '
done

See also

git commands

Index