summaryrefslogtreecommitdiff
path: root/devdocs/git/git-unpack-objects.html
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2024-04-07 13:41:34 -0500
committerCraig Jennings <c@cjennings.net>2024-04-07 13:41:34 -0500
commit754bbf7a25a8dda49b5d08ef0d0443bbf5af0e36 (patch)
treef1190704f78f04a2b0b4c977d20fe96a828377f1 /devdocs/git/git-unpack-objects.html
new repository
Diffstat (limited to 'devdocs/git/git-unpack-objects.html')
-rw-r--r--devdocs/git/git-unpack-objects.html6
1 files changed, 6 insertions, 0 deletions
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 @@
+<h1>git-unpack-objects</h1> <h2 id="_name">Name</h2> <div class="sectionbody"> <p>git-unpack-objects - Unpack objects from a packed archive</p> </div> <h2 id="_synopsis">Synopsis</h2> <div class="sectionbody"> <div class="verseblock"> <pre class="content" data-language="shell">git unpack-objects [-n] [-q] [-r] [--strict]</pre> </div> </div> <h2 id="_description">Description</h2> <div class="sectionbody"> <p>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.</p> <p>Objects that already exist in the repository will <strong>not</strong> be unpacked from the packfile. Therefore, nothing will be unpacked if you use this command on a packfile that exists within the target repository.</p> <p>See <a href="git-repack">git-repack[1]</a> for options to generate new packs and replace existing ones.</p> </div> <h2 id="_options">Options</h2> <div class="sectionbody"> <div class="dlist"> <dl> <dt class="hdlist1" id="Documentation/git-unpack-objects.txt--n"> -n </dt> <dd> <p> Dry run. Check the pack file without actually unpacking the objects.</p> </dd> <dt class="hdlist1" id="Documentation/git-unpack-objects.txt--q"> -q </dt> <dd> <p>The command usually shows percentage progress. This flag suppresses it.</p> </dd> <dt class="hdlist1" id="Documentation/git-unpack-objects.txt--r"> -r </dt> <dd> <p>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.</p> </dd> <dt class="hdlist1" id="Documentation/git-unpack-objects.txt---strict"> --strict </dt> <dd> <p>Don’t write objects with broken content or links.</p> </dd> <dt class="hdlist1" id="Documentation/git-unpack-objects.txt---max-input-sizeltsizegt"> --max-input-size=&lt;size&gt; </dt> <dd> <p>Die, if the pack is larger than &lt;size&gt;.</p> </dd> </dl> </div> </div><div class="_attribution">
+ <p class="_attribution-p">
+ &copy; 2012&ndash;2024 Scott Chacon and others<br>Licensed under the MIT License.<br>
+ <a href="https://git-scm.com/docs/git-unpack-objects" class="_attribution-link">https://git-scm.com/docs/git-unpack-objects</a>
+ </p>
+</div>