X-Git-Url: https://git.octo.it/?a=blobdiff_plain;ds=sidebyside;f=commit.c;h=f735f981bb2d4d7594e416bcb728ac06d09ebd0c;hb=380792390e05e744f9d7eefbc35d1db80e44e27a;hp=2f73cf3d9085a620bedd32e818942a11febab44f;hpb=706df00d6864201bdb90a2f3b26443a65ae538ff;p=git.git diff --git a/commit.c b/commit.c index 2f73cf3d..f735f981 100644 --- a/commit.c +++ b/commit.c @@ -3,6 +3,8 @@ #include "commit.h" #include "cache.h" +int save_commit_buffer = 1; + struct sort_node { /* @@ -264,7 +266,7 @@ int parse_commit(struct commit *item) sha1_to_hex(item->object.sha1)); } ret = parse_commit_buffer(item, buffer, size); - if (!ret) { + if (save_commit_buffer && !ret) { item->buffer = buffer; return 0; }