SYNOPSIS

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

DESCRIPTION

標準入力からパックされたアーカイブ(.pack)を読み取り、そこに含まれるオブジェクトを展開して、"loose" 形式(ファイルごとに1つのオブジェクト)でリポジトリに書き込みます。

リポジトリにすでに存在するオブジェクトは、パックファイルから取り出されません。したがって、ターゲットリポジトリ内に存在するパックファイルでこのコマンドを使用しても、何も取り出されません。

新しいパックを生成して既存のパックを置き換えるオプションについては、 git-repack(1) を参照してください。

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>.

GIT

Part of the git(1) suite