diff options
| author | Craig Jennings <c@cjennings.net> | 2024-04-07 13:41:34 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2024-04-07 13:41:34 -0500 |
| commit | 754bbf7a25a8dda49b5d08ef0d0443bbf5af0e36 (patch) | |
| tree | f1190704f78f04a2b0b4c977d20fe96a828377f1 /devdocs/git/git-verify-pack.html | |
new repository
Diffstat (limited to 'devdocs/git/git-verify-pack.html')
| -rw-r--r-- | devdocs/git/git-verify-pack.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/devdocs/git/git-verify-pack.html b/devdocs/git/git-verify-pack.html new file mode 100644 index 00000000..df9a5cba --- /dev/null +++ b/devdocs/git/git-verify-pack.html @@ -0,0 +1,6 @@ +<h1>git-verify-pack</h1> <h2 id="_name">Name</h2> <div class="sectionbody"> <p>git-verify-pack - Validate packed Git archive files</p> </div> <h2 id="_synopsis">Synopsis</h2> <div class="sectionbody"> <div class="verseblock"> <pre class="content" data-language="shell">git verify-pack [-v | --verbose] [-s | --stat-only] [--] <pack>.idx…</pre> </div> </div> <h2 id="_description">Description</h2> <div class="sectionbody"> <p>Reads given idx file for packed Git archive created with the <code>git pack-objects</code> command and verifies the idx file and the corresponding pack file.</p> </div> <h2 id="_options">Options</h2> <div class="sectionbody"> <div class="dlist"> <dl> <dt class="hdlist1" id="Documentation/git-verify-pack.txt-ltpackgtidx82308203"> <pack>.idx … </dt> <dd> <p>The idx files to verify.</p> </dd> <dt class="hdlist1" id="Documentation/git-verify-pack.txt--v"> -v </dt> <dt class="hdlist1" id="Documentation/git-verify-pack.txt---verbose"> --verbose </dt> <dd> <p>After verifying the pack, show the list of objects contained in the pack and a histogram of delta chain length.</p> </dd> <dt class="hdlist1" id="Documentation/git-verify-pack.txt--s"> -s </dt> <dt class="hdlist1" id="Documentation/git-verify-pack.txt---stat-only"> --stat-only </dt> <dd> <p>Do not verify the pack contents; only show the histogram of delta chain length. With <code>--verbose</code>, the list of objects is also shown.</p> </dd> <dt class="hdlist1" id="Documentation/git-verify-pack.txt---"> -- </dt> <dd> <p>Do not interpret any more arguments as options.</p> </dd> </dl> </div> </div> <h2 id="_output_format">Output format</h2> <div class="sectionbody"> <p>When specifying the -v option the format used is:</p> <div class="literalblock"> <div class="content"> <pre>SHA-1 type size size-in-packfile offset-in-packfile</pre> </div> </div> <p>for objects that are not deltified in the pack, and</p> <div class="literalblock"> <div class="content"> <pre>SHA-1 type size size-in-packfile offset-in-packfile depth base-SHA-1</pre> </div> </div> <p>for objects that are deltified.</p> </div><div class="_attribution"> + <p class="_attribution-p"> + © 2012–2024 Scott Chacon and others<br>Licensed under the MIT License.<br> + <a href="https://git-scm.com/docs/git-verify-pack" class="_attribution-link">https://git-scm.com/docs/git-verify-pack</a> + </p> +</div> |
