commit-graph: verify required chunks are present
[git] / Documentation / git-commit-graph.txt
1 git-commit-graph(1)
2 ===================
3
4 NAME
5 ----
6 git-commit-graph - Write and verify Git commit graph files
7
8
9 SYNOPSIS
10 --------
11 [verse]
12 'git commit-graph read' [--object-dir <dir>]
13 'git commit-graph verify' [--object-dir <dir>]
14 'git commit-graph write' <options> [--object-dir <dir>]
15
16
17 DESCRIPTION
18 -----------
19
20 Manage the serialized commit graph file.
21
22
23 OPTIONS
24 -------
25 --object-dir::
26         Use given directory for the location of packfiles and commit graph
27         file. This parameter exists to specify the location of an alternate
28         that only has the objects directory, not a full .git directory. The
29         commit graph file is expected to be at <dir>/info/commit-graph and
30         the packfiles are expected to be in <dir>/pack.
31
32
33 COMMANDS
34 --------
35 'write'::
36
37 Write a commit graph file based on the commits found in packfiles.
38 +
39 With the `--stdin-packs` option, generate the new commit graph by
40 walking objects only in the specified pack-indexes. (Cannot be combined
41 with --stdin-commits.)
42 +
43 With the `--stdin-commits` option, generate the new commit graph by
44 walking commits starting at the commits specified in stdin as a list
45 of OIDs in hex, one OID per line. (Cannot be combined with
46 --stdin-packs.)
47 +
48 With the `--append` option, include all commits that are present in the
49 existing commit-graph file.
50
51 'read'::
52
53 Read a graph file given by the commit-graph file and output basic
54 details about the graph file. Used for debugging purposes.
55
56 'verify'::
57
58 Read the commit-graph file and verify its contents against the object
59 database. Used to check for corrupted data.
60
61
62 EXAMPLES
63 --------
64
65 * Write a commit graph file for the packed commits in your local .git folder.
66 +
67 ------------------------------------------------
68 $ git commit-graph write
69 ------------------------------------------------
70
71 * Write a graph file, extending the current graph file using commits
72 * in <pack-index>.
73 +
74 ------------------------------------------------
75 $ echo <pack-index> | git commit-graph write --stdin-packs
76 ------------------------------------------------
77
78 * Write a graph file containing all reachable commits.
79 +
80 ------------------------------------------------
81 $ git show-ref -s | git commit-graph write --stdin-commits
82 ------------------------------------------------
83
84 * Write a graph file containing all commits in the current
85 * commit-graph file along with those reachable from HEAD.
86 +
87 ------------------------------------------------
88 $ git rev-parse HEAD | git commit-graph write --stdin-commits --append
89 ------------------------------------------------
90
91 * Read basic information from the commit-graph file.
92 +
93 ------------------------------------------------
94 $ git commit-graph read
95 ------------------------------------------------
96
97
98 GIT
99 ---
100 Part of the linkgit:git[1] suite