fix repacking with lots of tags

Use git-rev-list's --all instead of git-rev-parse's to keep from
hitting the shell's argument list length limits when repacking
with lots of tags.

Signed-off-by: Junio C Hamano <junkio@cox.net>
maint
Jim Radford 2006-04-02 20:50:17 -07:00 committed by Junio C Hamano
parent 23091e954c
commit 40e907bff2
1 changed files with 1 additions and 3 deletions

View File

@ -29,12 +29,10 @@ PACKDIR="$GIT_OBJECT_DIRECTORY/pack"
case ",$all_into_one," in case ",$all_into_one," in
,,) ,,)
rev_list='--unpacked' rev_list='--unpacked'
rev_parse='--all'
pack_objects='--incremental' pack_objects='--incremental'
;; ;;
,t,) ,t,)
rev_list= rev_list=
rev_parse='--all'
pack_objects= pack_objects=


# Redundancy check in all-into-one case is trivial. # Redundancy check in all-into-one case is trivial.
@ -43,7 +41,7 @@ case ",$all_into_one," in
;; ;;
esac esac
pack_objects="$pack_objects $local $quiet $no_reuse_delta" pack_objects="$pack_objects $local $quiet $no_reuse_delta"
name=$(git-rev-list --objects $rev_list $(git-rev-parse $rev_parse) 2>&1 | name=$(git-rev-list --objects --all $rev_list 2>&1 |
git-pack-objects --non-empty $pack_objects .tmp-pack) || git-pack-objects --non-empty $pack_objects .tmp-pack) ||
exit 1 exit 1
if [ -z "$name" ]; then if [ -z "$name" ]; then