Git

NOME

git-unpack-objects - Descompacte os objetos de um arquivo compactado

RESUMO

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

DESCRIÇÃO

Leia um arquivo compactado (.pack) na entrada predefinido, expandindo os objetos armazenados e gravando-os no repositório no formato "loose" (um objeto por arquivo).

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.

Para as opções de geração de novos pacotes e reposição dos existentes, consulte git-repack[1].

OPÇÕES

-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

Não escreva os objetos com conteúdo ou links corrompidos.

--max-input-size=<tamanho>

Encerre caso o pacote seja maior que <tamanho>.

GIT

Parte do conjunto git[1]

scroll-to-top