On Fri, Oct 4, 2013 at 1:57 PM, Nguyễn Thái Ngọc Duy <pclouds@xxxxxxxxx> wrote: > It's not an all-win situation though. --bulk is slower than --no-bulk > because: > > - Triple hashing: we need to calculate both object SHA-1s _and_ pack > SHA-1. At the end we have to fix up the pack, which means rehashing > the entire pack again. --no-bulk only cares about object SHA-1s. Oops, it's quadruple hashing: one for object sha-1 (1), one for pack sha-1 while writing pack (2), two for pack header fixup: one after the the header fixup (3), and one repeating the same (2) just to verify that it matches (2) exactly (4). Do we have to be this paranoid? I think we could drop (2) and (4) in this case. -- Duy -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html