diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-02-10 21:30:45 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-02-10 21:30:45 -0800 |
commit | fd8475d9fb76fbc435ba5dc5b7e97b0cad92661d (patch) | |
tree | e60ed01c440abe4ebfe125100bf4c44de1a49b2f /fast-import.c | |
parent | f6b98e46bdf64454d7c6ab76d617237118799d7b (diff) | |
parent | 9b27ea95189b1f276c9f7e10df81fa1476a4ad4d (diff) | |
download | git-fd8475d9fb76fbc435ba5dc5b7e97b0cad92661d.tar.gz git-fd8475d9fb76fbc435ba5dc5b7e97b0cad92661d.tar.xz |
Merge branch 'maint'
* maint:
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 1935206be..03b13e062 100644 --- a/fast-import.c +++ b/fast-import.c @@ -945,6 +945,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; |