
We presently use the ".txt" extension for our AsciiDoc files. While not wrong, most editors do not associate this extension with AsciiDoc, meaning that contributors don't get automatic editor functionality that could be useful, such as syntax highlighting and prose linting. It is much more common to use the ".adoc" extension for AsciiDoc files, since this helps editors automatically detect files and also allows various forges to provide rich (HTML-like) rendering. Let's do that here, renaming all of the files and updating the includes where relevant. Adjust the various build scripts and makefiles to use the new extension as well. Note that this should not result in any user-visible changes to the documentation. Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
54 lines
1.1 KiB
Plaintext
54 lines
1.1 KiB
Plaintext
git-verify-pack(1)
|
|
==================
|
|
|
|
NAME
|
|
----
|
|
git-verify-pack - Validate packed Git archive files
|
|
|
|
|
|
SYNOPSIS
|
|
--------
|
|
[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 the idx file and the
|
|
corresponding pack file.
|
|
|
|
OPTIONS
|
|
-------
|
|
<pack>.idx ...::
|
|
The idx files to verify.
|
|
|
|
-v::
|
|
--verbose::
|
|
After verifying the pack, show the 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`, the 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
|