Subject: [PATCH] builtin-prune: memory diet. Somehow we forgot to turn save_commit_buffer off while walking the reachable objects. Releasing the memory for commit object data that we do not use matters for large projects (for example, about 90MB is saved while traversing linux-2.6 history). Signed-off-by: Junio C Hamano <junkio@xxxxxxx> --- * The linux-2.6 history number for me is inflated because I have grafts that connects historical archive behind the current v2.6.12-rc2 based history... builtin-prune.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/builtin-prune.c b/builtin-prune.c index 00a53b3..b469c43 100644 --- a/builtin-prune.c +++ b/builtin-prune.c @@ -253,6 +253,8 @@ int cmd_prune(int argc, const char **argv, const char *prefix) usage(prune_usage); } + save_commit_buffer = 0; + /* * Set up revision parsing, and mark us as being interested * in all object types, not just commits. - 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