summaryrefslogtreecommitdiff
path: root/Documentation/git-verify-pack.txt
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation/git-verify-pack.txt')
-rw-r--r--Documentation/git-verify-pack.txt21
1 files changed, 7 insertions, 14 deletions
diff --git a/Documentation/git-verify-pack.txt b/Documentation/git-verify-pack.txt
index 97f7f91..61ca6d0 100644
--- a/Documentation/git-verify-pack.txt
+++ b/Documentation/git-verify-pack.txt
@@ -3,18 +3,19 @@ git-verify-pack(1)
NAME
----
-git-verify-pack - Validate packed git archive files
+git-verify-pack - Validate packed Git archive files
SYNOPSIS
--------
-'git verify-pack' [-v|--verbose] [--] <pack>.idx ...
+[verse]
+'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 idx file and the
+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
@@ -39,22 +40,14 @@ OUTPUT FORMAT
-------------
When specifying the -v option the format used is:
- SHA1 type size size-in-pack-file offset-in-packfile
+ SHA-1 type size size-in-packfile offset-in-packfile
for objects that are not deltified in the pack, and
- SHA1 type size size-in-packfile offset-in-packfile depth base-SHA1
+ SHA-1 type size size-in-packfile offset-in-packfile depth base-SHA-1
for objects that are deltified.
-Author
-------
-Written by Junio C Hamano <gitster@pobox.com>
-
-Documentation
---------------
-Documentation by Junio C Hamano
-
GIT
---
Part of the linkgit:git[1] suite