From 754bbf7a25a8dda49b5d08ef0d0443bbf5af0e36 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sun, 7 Apr 2024 13:41:34 -0500 Subject: new repository --- devdocs/git/git-unpack-objects.html | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 devdocs/git/git-unpack-objects.html (limited to 'devdocs/git/git-unpack-objects.html') diff --git a/devdocs/git/git-unpack-objects.html b/devdocs/git/git-unpack-objects.html new file mode 100644 index 00000000..fb13b524 --- /dev/null +++ b/devdocs/git/git-unpack-objects.html @@ -0,0 +1,6 @@ +

git-unpack-objects

Name

git-unpack-objects - Unpack objects from a packed archive

Synopsis

git unpack-objects [-n] [-q] [-r] [--strict]

Description

Read a packed archive (.pack) from the standard input, expanding the objects contained within and writing them into the repository in "loose" (one object per file) format.

Objects that already exist in the repository will not be unpacked from the packfile. Therefore, nothing will be unpacked if you use this command on a packfile that exists within the target repository.

See git-repack[1] for options to generate new packs and replace existing ones.

Options

-n

Dry run. Check the pack file without actually unpacking the objects.

-q

The command usually shows percentage progress. This flag suppresses it.

-r

When unpacking a corrupt packfile, the command dies at the first corruption. This flag tells it to keep going and make the best effort to recover as many objects as possible.

--strict

Don’t write objects with broken content or links.

--max-input-size=<size>

Die, if the pack is larger than <size>.

+

+ © 2012–2024 Scott Chacon and others
Licensed under the MIT License.
+ https://git-scm.com/docs/git-unpack-objects +

+
-- cgit v1.2.3