Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@xxxxxxxxx> --- builtin/send-pack.c | 2 ++ upload-pack.c | 3 +++ 2 files changed, 5 insertions(+), 0 deletions(-) diff --git a/builtin/send-pack.c b/builtin/send-pack.c index 481602d..fb1ad2b 100644 --- a/builtin/send-pack.c +++ b/builtin/send-pack.c @@ -53,6 +53,8 @@ static int pack_objects(int fd, struct ref *refs, struct extra_have_objects *ext int i; i = 4; + if (core_subtree) + args->use_thin_pack = 0; if (args->use_thin_pack) argv[i++] = "--thin"; if (args->use_ofs_delta) diff --git a/upload-pack.c b/upload-pack.c index 9b6710a..c65a3cb 100644 --- a/upload-pack.c +++ b/upload-pack.c @@ -581,6 +581,9 @@ static void receive_needs(void) if (!use_sideband && daemon_mode) no_progress = 1; + if (core_subtree) + use_thin_pack = 0; + if (depth == 0 && shallows.nr == 0) return; if (depth > 0) { -- 1.7.1.rc1.69.g24c2f7 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html