diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-02-10 15:32:26 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-02-10 15:32:26 -0800 |
commit | 9b27ea95189b1f276c9f7e10df81fa1476a4ad4d (patch) | |
tree | 8116ae20f73dc9596be6be72628012b699680056 /fast-import.c | |
parent | 7e1100e9e939c9178b2aa3969349e9e8d34488bf (diff) | |
parent | 3d20c636af05c44a6ff4df9309c2bca108ee149b (diff) | |
download | git-9b27ea95189b1f276c9f7e10df81fa1476a4ad4d.tar.gz |
Merge branch 'maint-1.6.0' into maint
* maint-1.6.0:
Clear the delta base cache during fast-import checkpoint
Diffstat (limited to 'fast-import.c')
-rw-r--r-- | fast-import.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fast-import.c b/fast-import.c index f0e08aca70..23e970d581 100644 --- a/fast-import.c +++ b/fast-import.c @@ -944,6 +944,7 @@ static void end_packfile(void) { struct packed_git *old_p = pack_data, *new_p; + clear_delta_base_cache(); if (object_count) { char *idx_name; int i; |