Home Explore Blog CI



git

1st chunk of `Documentation/config/fastimport.adoc`
8f91930dc4288cef3b6155514b6b763cc1d7887cdaabcdda00000001000001d8
fastimport.unpackLimit::
	If the number of objects imported by linkgit:git-fast-import[1]
	is below this limit, then the objects will be unpacked into
	loose object files.  However, if the number of imported objects
	equals or exceeds this limit, then the pack will be stored as a
	pack.  Storing the pack from a fast-import can make the import
	operation complete faster, especially on slow filesystems.  If
	not set, the value of `transfer.unpackLimit` is used instead.

Title: Fast Import Unpack Limit
Summary
The fastimport.unpackLimit setting determines whether imported objects are unpacked into loose files or stored as a pack, based on the number of imported objects, to optimize import speed on slow filesystems.