Document git-diff-tree --always
[git/dscho.git] / Documentation / git-index-pack.txt
blob71ce557276fd1bfe5e3ee1d3f03f94e066f23e81
1 git-index-pack(1)
2 =================
4 NAME
5 ----
6 git-index-pack - Build pack index file for an existing packed archive
9 SYNOPSIS
10 --------
11 'git-index-pack' [-o <index-file>] <pack-file>
14 DESCRIPTION
15 -----------
16 Reads a packed archive (.pack) from the specified file, and
17 builds a pack index file (.idx) for it.  The packed archive
18 together with the pack index can then be placed in the
19 objects/pack/ directory of a git repository.
22 OPTIONS
23 -------
24 -o <index-file>::
25         Write the generated pack index into the specified
26         file.  Without this option the name of pack index
27         file is constructed from the name of packed archive
28         file by replacing .pack with .idx (and the program
29         fails if the name of packed archive does not end
30         with .pack).
33 Author
34 ------
35 Written by Sergey Vlasov <vsu@altlinux.ru>
37 Documentation
38 -------------
39 Documentation by Sergey Vlasov
41 GIT
42 ---
43 Part of the gitlink:git[7] suite