On Thu, 3 Apr 2008, Roman Shaposhnik wrote: > > The repository was created using hg2git (the one based on git-fast-import) > and it was GC'ed and REPACK'ed just in case. Before going any further - exactly _how_ was it repacked? In particular, when using importers that do partial packing on their own (and any "git-fastimport" user is that by definition - and I think hg2git does that), at the end of it all you have to make sure to repack in a way where the repacking will totally discard the import-time packfiles. IOW, that's one of the very few times you should use "-f" to git repack. It's usually also a good place to make sure that since you ignore the old packing information, it's best to also make sure that the new packing info is good by using a bigger window (and perhaps a bigger depth). That makes the packing much slower, of course, but this is meant to be a one-time event. So try something like git repack -a -d -f --depth=100 --window=100 if you have a good CPU and plenty of memory. > The last item (trees) also seem to take the most space and the most > reasonable explanation that I can offer is that NetBeans repository has > a really weird structure where they have approximately 700 (yes, seven > hundred!) top-level subdirectories there. They are clearly > Submodules-shy, but that's another issue that I will need to address > with them. Trees taking the biggest amount of space is not unheard of, and it may also be that the name heuristics (for finding good packing partners) could be failign, which would result in a much bigger pack than necessary. So if you already did an aggressive repack like the above, I'd happily take a look at whether maybe it's bad heuristics for finding tree objects to pair up for delta-compression. Do you have a place where you can put that repo for people to clone and look at? Linus -- 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