Topics ▾
Email
Version 1.5.4 ▾
git-verify-pack last updated in 1.8.2.2
Changes in the git-verify-pack manual
Setup and Config
Getting and Creating Projects
Basic Snapshotting
Branching and Merging
Sharing and Updating Projects
Inspection and Comparison
Patching
Debugging
External Systems
Administration
Server Admin
Plumbing Commands
- 1.8.2.3 → 1.8.3 no changes
-
1.8.2.2
04/26/13
-
1.8.2.1
04/07/13
- 1.7.6.2 → 1.8.1.6 no changes
-
1.7.6.1
08/24/11
- 1.7.5.1 → 1.7.6 no changes
-
1.7.5
04/24/11
- 1.7.4.3 → 1.7.4.5 no changes
-
1.7.4.2
03/26/11
- 1.7.0.1 → 1.7.4.1 no changes
-
1.7.0
02/12/10
- 1.6.5.1 → 1.6.6.3 no changes
-
1.6.5
10/10/09
- 1.6.0.1 → 1.6.4.5 no changes
-
1.6.0
08/17/08
- 1.5.6.6 no changes
-
1.5.6.5
08/06/08
- 1.5.6.1 → 1.5.6.4 no changes
-
1.5.6
06/18/08
- 1.5.5.1 → 1.5.5.6 no changes
git-verify-pack(1) Manual Page
NAME
git-verify-pack - Validate packed git archive files
SYNOPSIS
git-verify-pack [-v] [--] <pack>.idx ...
DESCRIPTION
Reads given idx file for packed git archive created with git-pack-objects command and verifies idx file and the corresponding pack file.
OPTIONS
- <pack>.idx ...
The idx files to verify.
- -v
After verifying the pack, show list of objects contained in the pack.
- --
Do not interpret any more arguments as options.
OUTPUT FORMAT
When specifying the -v option 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
Written by Junio C Hamano <junkio@cox.net>
Documentation
Documentation by Junio C Hamano
GIT
Part of the git(7) suite