From c8bae7493d2f2910b57f13ded012e86bdcfb0532 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 16:47:53 +0200 Subject: Adding upstream version 1:2.39.2. Signed-off-by: Daniel Baumann --- Documentation/git-verify-pack.txt | 53 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 Documentation/git-verify-pack.txt (limited to 'Documentation/git-verify-pack.txt') diff --git a/Documentation/git-verify-pack.txt b/Documentation/git-verify-pack.txt new file mode 100644 index 0000000..b8720dc --- /dev/null +++ b/Documentation/git-verify-pack.txt @@ -0,0 +1,53 @@ +git-verify-pack(1) +================== + +NAME +---- +git-verify-pack - Validate packed Git archive files + + +SYNOPSIS +-------- +[verse] +'git verify-pack' [-v | --verbose] [-s | --stat-only] [--] .idx... + + +DESCRIPTION +----------- +Reads given idx file for packed Git archive created with the +'git pack-objects' command and verifies idx file and the +corresponding pack file. + +OPTIONS +------- +.idx ...:: + The idx files to verify. + +-v:: +--verbose:: + After verifying the pack, show 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`, 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. + +GIT +--- +Part of the linkgit:git[1] suite -- cgit v1.2.3