diff options
author | Junio C Hamano <junkio@cox.net> | 2005-09-18 01:18:15 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-09-18 01:18:15 -0700 |
commit | 8ac93bc98f5e868e890e1a740df9f0c6513189c8 (patch) | |
tree | c1c1e3c93a3ca5adc86d67d4d55544bab09f2586 /commit.c | |
parent | 4803c2802c11525b11d106247661ea13b2a9ce98 (diff) | |
parent | 85d106c267ec26f398e0aaf352d8011f661c459a (diff) | |
download | git-8ac93bc98f5e868e890e1a740df9f0c6513189c8.tar.gz |
Merge branch 'master' of .
Diffstat (limited to 'commit.c')
-rw-r--r-- | commit.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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; } |