Skip to content

Commit

Permalink
fix repacking with lots of tags
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Jim Radford authored and Junio C Hamano committed Apr 3, 2006
1 parent 23091e9 commit 40e907b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions git-repack.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,10 @@ PACKDIR="$GIT_OBJECT_DIRECTORY/pack"
case ",$all_into_one," in
,,)
rev_list='--unpacked'
rev_parse='--all'
pack_objects='--incremental'
;;
,t,)
rev_list=
rev_parse='--all'
pack_objects=

# Redundancy check in all-into-one case is trivial.
Expand All @@ -43,7 +41,7 @@ case ",$all_into_one," in
;;
esac
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) ||
exit 1
if [ -z "$name" ]; then
Expand Down

0 comments on commit 40e907b

Please sign in to comment.