Git fork
1git-commit-graph(1)
2===================
3
4NAME
5----
6git-commit-graph - Write and verify Git commit-graph files
7
8
9SYNOPSIS
10--------
11[verse]
12'git commit-graph verify' [--object-dir <dir>] [--shallow] [--[no-]progress]
13'git commit-graph write' [--object-dir <dir>] [--append]
14 [--split[=<strategy>]] [--reachable | --stdin-packs | --stdin-commits]
15 [--changed-paths] [--[no-]max-new-filters <n>] [--[no-]progress]
16 <split-options>
17
18
19DESCRIPTION
20-----------
21
22Manage the serialized commit-graph file.
23
24
25OPTIONS
26-------
27--object-dir::
28 Use given directory for the location of packfiles and commit-graph
29 file. This parameter exists to specify the location of an alternate
30 that only has the objects directory, not a full `.git` directory. The
31 commit-graph file is expected to be in the `<dir>/info` directory and
32 the packfiles are expected to be in `<dir>/pack`. If the directory
33 could not be made into an absolute path, or does not match any known
34 object directory, `git commit-graph ...` will exit with non-zero
35 status.
36
37--progress::
38--no-progress::
39 Turn progress on/off explicitly. If neither is specified, progress is
40 shown if standard error is connected to a terminal.
41
42COMMANDS
43--------
44'write'::
45
46Write a commit-graph file based on the commits found in packfiles. If
47the config option `core.commitGraph` is disabled, then this command will
48output a warning, then return success without writing a commit-graph file.
49+
50With the `--stdin-packs` option, generate the new commit graph by
51walking objects only in the specified pack-indexes. (Cannot be combined
52with `--stdin-commits` or `--reachable`.)
53+
54With the `--stdin-commits` option, generate the new commit graph by
55walking commits starting at the commits specified in stdin as a list
56of OIDs in hex, one OID per line. OIDs that resolve to non-commits
57(either directly, or by peeling tags) are silently ignored. OIDs that
58are malformed, or do not exist generate an error. (Cannot be combined
59with `--stdin-packs` or `--reachable`.)
60+
61With the `--reachable` option, generate the new commit graph by walking
62commits starting at all refs. (Cannot be combined with `--stdin-commits`
63or `--stdin-packs`.)
64+
65With the `--append` option, include all commits that are present in the
66existing commit-graph file.
67+
68With the `--changed-paths` option, compute and write information about the
69paths changed between a commit and its first parent. This operation can
70take a while on large repositories. It provides significant performance gains
71for getting history of a directory or a file with `git log -- <path>`. If
72this option is given, future commit-graph writes will automatically assume
73that this option was intended. Use `--no-changed-paths` to stop storing this
74data.
75+
76With the `--max-new-filters=<n>` option, generate at most `n` new Bloom
77filters (if `--changed-paths` is specified). If `n` is `-1`, no limit is
78enforced. Only commits present in the new layer count against this
79limit. To retroactively compute Bloom filters over earlier layers, it is
80advised to use `--split=replace`. Overrides the `commitGraph.maxNewFilters`
81configuration.
82+
83With the `--split[=<strategy>]` option, write the commit-graph as a
84chain of multiple commit-graph files stored in
85`<dir>/info/commit-graphs`. Commit-graph layers are merged based on the
86strategy and other splitting options. The new commits not already in the
87commit-graph are added in a new "tip" file. This file is merged with the
88existing file if the following merge conditions are met:
89+
90* If `--split=no-merge` is specified, a merge is never performed, and
91the remaining options are ignored. `--split=replace` overwrites the
92existing chain with a new one. A bare `--split` defers to the remaining
93options. (Note that merging a chain of commit graphs replaces the
94existing chain with a length-1 chain where the first and only
95incremental holds the entire graph).
96+
97* If `--size-multiple=<X>` is not specified, let `X` equal 2. If the new
98tip file would have `N` commits and the previous tip has `M` commits and
99`X` times `N` is greater than `M`, instead merge the two files into a
100single file.
101+
102* If `--max-commits=<M>` is specified with `M` a positive integer, and the
103new tip file would have more than `M` commits, then instead merge the new
104tip with the previous tip.
105+
106Finally, if `--expire-time=<datetime>` is not specified, let `datetime`
107be the current time. After writing the split commit-graph, delete all
108unused commit-graph whose modified times are older than `datetime`.
109
110'verify'::
111
112Read the commit-graph file and verify its contents against the object
113database. Used to check for corrupted data.
114+
115With the `--shallow` option, only check the tip commit-graph file in
116a chain of split commit-graphs.
117
118
119EXAMPLES
120--------
121
122* Write a commit-graph file for the packed commits in your local `.git`
123 directory.
124+
125------------------------------------------------
126$ git commit-graph write
127------------------------------------------------
128
129* Write a commit-graph file, extending the current commit-graph file
130 using commits in `<pack-index>`.
131+
132------------------------------------------------
133$ echo <pack-index> | git commit-graph write --stdin-packs
134------------------------------------------------
135
136* Write a commit-graph file containing all reachable commits.
137+
138------------------------------------------------
139$ git show-ref -s | git commit-graph write --stdin-commits
140------------------------------------------------
141
142* Write a commit-graph file containing all commits in the current
143 commit-graph file along with those reachable from `HEAD`.
144+
145------------------------------------------------
146$ git rev-parse HEAD | git commit-graph write --stdin-commits --append
147------------------------------------------------
148
149CONFIGURATION
150-------------
151
152include::includes/cmd-config-section-all.adoc[]
153
154include::config/commitgraph.adoc[]
155
156
157FILE FORMAT
158-----------
159
160see linkgit:gitformat-commit-graph[5].
161
162GIT
163---
164Part of the linkgit:git[1] suite