diff options
author | Junio C Hamano <junkio@cox.net> | 2005-07-14 00:08:05 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-14 08:54:31 -0700 |
commit | 5f40520f8c4ca24b29295a36c7a7b6059ad5a888 (patch) | |
tree | f27165750dae7be4bcc2767d748463c60ec496eb /Documentation/git-verify-pack.txt | |
parent | 516236ce3fc6208c217e39d2c005cb162ad56486 (diff) | |
download | git-5f40520f8c4ca24b29295a36c7a7b6059ad5a888.tar.gz git-5f40520f8c4ca24b29295a36c7a7b6059ad5a888.tar.xz |
[PATCH] Documentation: packed GIT support commands.
This adds documentation for creating packed archives, inspecting,
validating them, and unpacking them.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'Documentation/git-verify-pack.txt')
-rw-r--r-- | Documentation/git-verify-pack.txt | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/Documentation/git-verify-pack.txt b/Documentation/git-verify-pack.txt index 2df77de0f..d1043eb8d 100644 --- a/Documentation/git-verify-pack.txt +++ b/Documentation/git-verify-pack.txt @@ -9,7 +9,7 @@ git-verify-pack - Validate packed GIT archive files. SYNOPSIS -------- -'git-verify-pack' <pack>.idx ... +'git-verify-pack' [-v] <pack>.idx ... DESCRIPTION @@ -23,6 +23,17 @@ OPTIONS <pack>.idx ...:: The idx files to verify. +-v:: + After verifying the pack, show list of objects contained + in the pack. The format used is: + + SHA1 type size offset-in-packfile + + for objects that are not deltified in the pack, and + + SHA1 type size offset-in-packfile depth base-SHA1 + + for objects that are deltified. Author ------ |