diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-10-28 14:48:40 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-12-01 11:46:09 -0800 |
commit | 568508e76570e9ea36aad6446959424cebcf0535 (patch) | |
tree | 9b71da7197e9a084c3406d6020672dd11ac26b24 /builtin/pack-objects.c | |
parent | 6c526148644475acbc047faaeb57d42fde1f667d (diff) | |
download | git-568508e76570e9ea36aad6446959424cebcf0535.tar.gz |
bulk-checkin: replace fast-import based implementationjc/stream-to-pack
This extends the earlier approach to stream a large file directly from the
filesystem to its own packfile, and allows "git add" to send large files
directly into a single pack. Older code used to spawn fast-import, but the
new bulk-checkin API replaces it.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/pack-objects.c')
-rw-r--r-- | builtin/pack-objects.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/builtin/pack-objects.c b/builtin/pack-objects.c index b458b6d3f4..dde913ebb4 100644 --- a/builtin/pack-objects.c +++ b/builtin/pack-objects.c @@ -76,7 +76,7 @@ static struct pack_idx_option pack_idx_opts; static const char *base_name; static int progress = 1; static int window = 10; -static unsigned long pack_size_limit, pack_size_limit_cfg; +static unsigned long pack_size_limit; static int depth = 50; static int delta_search_threads; static int pack_to_stdout; @@ -2009,10 +2009,6 @@ static int git_pack_config(const char *k, const char *v, void *cb) pack_idx_opts.version); return 0; } - if (!strcmp(k, "pack.packsizelimit")) { - pack_size_limit_cfg = git_config_ulong(k, v); - return 0; - } return git_default_config(k, v, cb); } |