logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

git-verify-pack.1 (2532B)


  1. '\" t
  2. .\" Title: git-verify-pack
  3. .\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
  4. .\" Generator: DocBook XSL Stylesheets v1.79.2 <http://docbook.sf.net/>
  5. .\" Date: 2025-03-14
  6. .\" Manual: Git Manual
  7. .\" Source: Git 2.49.0
  8. .\" Language: English
  9. .\"
  10. .TH "GIT\-VERIFY\-PACK" "1" "2025-03-14" "Git 2\&.49\&.0" "Git Manual"
  11. .\" -----------------------------------------------------------------
  12. .\" * Define some portability stuff
  13. .\" -----------------------------------------------------------------
  14. .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  15. .\" http://bugs.debian.org/507673
  16. .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
  17. .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  18. .ie \n(.g .ds Aq \(aq
  19. .el .ds Aq '
  20. .\" -----------------------------------------------------------------
  21. .\" * set default formatting
  22. .\" -----------------------------------------------------------------
  23. .\" disable hyphenation
  24. .nh
  25. .\" disable justification (adjust text to left margin only)
  26. .ad l
  27. .\" -----------------------------------------------------------------
  28. .\" * MAIN CONTENT STARTS HERE *
  29. .\" -----------------------------------------------------------------
  30. .SH "NAME"
  31. git-verify-pack \- Validate packed Git archive files
  32. .SH "SYNOPSIS"
  33. .sp
  34. .nf
  35. \fIgit verify\-pack\fR [\-v | \-\-verbose] [\-s | \-\-stat\-only] [\-\-] <pack>\&.idx\&...\:
  36. .fi
  37. .SH "DESCRIPTION"
  38. .sp
  39. Reads given idx file for packed Git archive created with the \fIgit pack\-objects\fR command and verifies the idx file and the corresponding pack file\&.
  40. .SH "OPTIONS"
  41. .PP
  42. <pack>\&.idx \&...\:
  43. .RS 4
  44. The idx files to verify\&.
  45. .RE
  46. .PP
  47. \-v, \-\-verbose
  48. .RS 4
  49. After verifying the pack, show the list of objects contained in the pack and a histogram of delta chain length\&.
  50. .RE
  51. .PP
  52. \-s, \-\-stat\-only
  53. .RS 4
  54. Do not verify the pack contents; only show the histogram of delta chain length\&. With
  55. \fB\-\-verbose\fR, the list of objects is also shown\&.
  56. .RE
  57. .PP
  58. \-\-
  59. .RS 4
  60. Do not interpret any more arguments as options\&.
  61. .RE
  62. .SH "OUTPUT FORMAT"
  63. .sp
  64. When specifying the \-v option the format used is:
  65. .sp
  66. .if n \{\
  67. .RS 4
  68. .\}
  69. .nf
  70. SHA\-1 type size size\-in\-packfile offset\-in\-packfile
  71. .fi
  72. .if n \{\
  73. .RE
  74. .\}
  75. .sp
  76. for objects that are not deltified in the pack, and
  77. .sp
  78. .if n \{\
  79. .RS 4
  80. .\}
  81. .nf
  82. SHA\-1 type size size\-in\-packfile offset\-in\-packfile depth base\-SHA\-1
  83. .fi
  84. .if n \{\
  85. .RE
  86. .\}
  87. .sp
  88. for objects that are deltified\&.
  89. .SH "GIT"
  90. .sp
  91. Part of the \fBgit\fR(1) suite