From 754bbf7a25a8dda49b5d08ef0d0443bbf5af0e36 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sun, 7 Apr 2024 13:41:34 -0500 Subject: new repository --- devdocs/git/git-verify-pack.html | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 devdocs/git/git-verify-pack.html (limited to 'devdocs/git/git-verify-pack.html') 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 @@ +

git-verify-pack

Name

git-verify-pack - Validate packed Git archive files

Synopsis

git verify-pack [-v | --verbose] [-s | --stat-only] [--] <pack>.idx…​

Description

Reads given idx file for packed Git archive created with the git pack-objects command and verifies the idx file and the corresponding pack file.

Options

<pack>.idx …​

The idx files to verify.

-v
--verbose

After verifying the pack, show the list of objects contained in the pack and a histogram of delta chain length.

-s
--stat-only

Do not verify the pack contents; only show the histogram of delta chain length. With --verbose, the list of objects is also shown.

--

Do not interpret any more arguments as options.

Output format

When specifying the -v option the format used is:

SHA-1 type size size-in-packfile offset-in-packfile

for objects that are not deltified in the pack, and

SHA-1 type size size-in-packfile offset-in-packfile depth base-SHA-1

for objects that are deltified.

+

+ © 2012–2024 Scott Chacon and others
Licensed under the MIT License.
+ https://git-scm.com/docs/git-verify-pack +

+
-- cgit v1.2.3