X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=commit.c;h=f735f981bb2d4d7594e416bcb728ac06d09ebd0c;hb=b23f02ee7aa3fc1cdaf6aebde9b731f22671251b;hp=2f73cf3d9085a620bedd32e818942a11febab44f;hpb=51017101c7a308745ba3c04944457f1dc6a55780;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; }