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