pack-objects: turn off bitmaps when we split packs
[git.git] / Documentation / git-unpack-objects.txt
blob12cb108b8561a6365192a65688d116901468decf
1 git-unpack-objects(1)
2 =====================
4 NAME
5 ----
6 git-unpack-objects - Unpack objects from a packed archive
9 SYNOPSIS
10 --------
11 [verse]
12 'git unpack-objects' [-n] [-q] [-r] [--strict] < <pack-file>
15 DESCRIPTION
16 -----------
17 Read a packed archive (.pack) from the standard input, expanding
18 the objects contained within and writing them into the repository in
19 "loose" (one object per file) format.
21 Objects that already exist in the repository will *not* be unpacked
22 from the pack-file.  Therefore, nothing will be unpacked if you use
23 this command on a pack-file that exists within the target repository.
25 See linkgit:git-repack[1] for options to generate
26 new packs and replace existing ones.
28 OPTIONS
29 -------
30 -n::
31         Dry run.  Check the pack file without actually unpacking
32         the objects.
34 -q::
35         The command usually shows percentage progress.  This
36         flag suppresses it.
38 -r::
39         When unpacking a corrupt packfile, the command dies at
40         the first corruption.  This flag tells it to keep going
41         and make the best effort to recover as many objects as
42         possible.
44 --strict::
45         Don't write objects with broken content or links.
47 GIT
48 ---
49 Part of the linkgit:git[1] suite