It shouldn't. The existing packfile is designed to make "git
log" very efficient, by making it cheap to look only at the
commit message and ancestry information.
The objects are sorted first by type in the pack with the
existing code already, and commits come first. Try this.
git repack -a -d
git show-index <.git/objects/pack/pack-*.idx |
sort -n |
while read offset objectname
do
git cat-file -t "$objectname"
done
-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html