The following Git "bundle" files are available for download:

Bundle files can be used to speed up clones and fetches for users with poor network connectivity to the origin server. Unlike `git clone` or `git fetch`, downloading bundle files is resumable which can help in case of unreliable internet connection.

The following commands can be used to bootstrap a local clone of the core repository with the associated bundle file and update it against its current state.

	$ wget --continue https://git-bundles.libreoffice.org/core.bundle
	$ git clone -o bundle core.bundle ./core
	$ rm ./core.bundle
	$ cd ./core
	$ git remote add origin https://git.libreoffice.org/core
	$ git pull origin master
	$ git remote remove bundle
    

Since git v1.38 bundle URIs can be specified as an option to `git clone` and the above commands can be simplified as the following one-liner:

	$ git clone --bundle-uri=https://git-bundles.libreoffice.org/core.bundle https://git.libreoffice.org/core