summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Radford <radford@blackbean.org>2006-04-03 03:50:17 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-04-03 04:25:57 (GMT)
commit40e907bff260a94306b1fe43d0fb829bf54e3103 (patch)
tree185a3e1b615447a95726ebf62c3d9db3bfda5b3e
parent23091e954c968282d4d9087da00f60c2f02aecc5 (diff)
downloadgit-40e907bff260a94306b1fe43d0fb829bf54e3103.zip
git-40e907bff260a94306b1fe43d0fb829bf54e3103.tar.gz
git-40e907bff260a94306b1fe43d0fb829bf54e3103.tar.bz2
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>
-rwxr-xr-xgit-repack.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/git-repack.sh b/git-repack.sh
index bc90112..a5d349f 100755
--- a/git-repack.sh
+++ b/git-repack.sh
@@ -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.
@@ -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