зеркало из https://github.com/microsoft/git.git
upload-pack: Increase MAX_HAS.
Later round would further improve fetch-pack not to send useless "have", but in the meantime, increase it to help upload-pack to find more common commits, as discussed on the list. Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Родитель
05625af32e
Коммит
6b32884a09
|
@ -6,8 +6,8 @@
|
|||
|
||||
static const char upload_pack_usage[] = "git-upload-pack [--strict] [--timeout=nn] <dir>";
|
||||
|
||||
#define MAX_HAS (16)
|
||||
#define MAX_NEEDS (256)
|
||||
#define MAX_HAS 256
|
||||
#define MAX_NEEDS 256
|
||||
static int nr_has = 0, nr_needs = 0;
|
||||
static unsigned char has_sha1[MAX_HAS][20];
|
||||
static unsigned char needs_sha1[MAX_NEEDS][20];
|
||||
|
|
Загрузка…
Ссылка в новой задаче