]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-commit-graph.txt
docs: mention when increasing http.postBuffer is valuable
[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
GS
12'git commit-graph verify' [--object-dir <dir>] [--shallow] [--[no-]progress]
13'git commit-graph write' <options> [--object-dir <dir>] [--[no-]progress]
f237c8b6
DS
14
15
16DESCRIPTION
17-----------
18
4c399442 19Manage the serialized commit-graph file.
f237c8b6
DS
20
21
22OPTIONS
23-------
24--object-dir::
4c399442 25 Use given directory for the location of packfiles and commit-graph
f237c8b6 26 file. This parameter exists to specify the location of an alternate
d59a9168 27 that only has the objects directory, not a full `.git` directory. The
c2bc6e6a 28 commit-graph file is expected to be in the `<dir>/info` directory and
d59a9168 29 the packfiles are expected to be in `<dir>/pack`.
f237c8b6 30
73716122
GS
31--[no-]progress::
32 Turn progress on/off explicitly. If neither is specified, progress is
33 shown if standard error is connected to a terminal.
f237c8b6
DS
34
35COMMANDS
36--------
37'write'::
38
4c399442 39Write a commit-graph file based on the commits found in packfiles.
049d51a2
DS
40+
41With the `--stdin-packs` option, generate the new commit graph by
3d5df01b 42walking objects only in the specified pack-indexes. (Cannot be combined
59fb8770 43with `--stdin-commits` or `--reachable`.)
3d5df01b
DS
44+
45With the `--stdin-commits` option, generate the new commit graph by
46walking commits starting at the commits specified in stdin as a list
47of OIDs in hex, one OID per line. (Cannot be combined with
59fb8770
DS
48`--stdin-packs` or `--reachable`.)
49+
50With the `--reachable` option, generate the new commit graph by walking
51commits starting at all refs. (Cannot be combined with `--stdin-commits`
52or `--stdin-packs`.)
7547b95b
DS
53+
54With the `--append` option, include all commits that are present in the
55existing commit-graph file.
c2bc6e6a
DS
56+
57With the `--split` option, write the commit-graph as a chain of multiple
58commit-graph files stored in `<dir>/info/commit-graphs`. The new commits
59not already in the commit-graph are added in a new "tip" file. This file
60is merged with the existing file if the following merge conditions are
61met:
62+
63* If `--size-multiple=<X>` is not specified, let `X` equal 2. If the new
64tip file would have `N` commits and the previous tip has `M` commits and
65`X` times `N` is greater than `M`, instead merge the two files into a
66single file.
67+
68* If `--max-commits=<M>` is specified with `M` a positive integer, and the
69new tip file would have more than `M` commits, then instead merge the new
70tip with the previous tip.
71+
72Finally, if `--expire-time=<datetime>` is not specified, let `datetime`
73be the current time. After writing the split commit-graph, delete all
74unused commit-graph whose modified times are older than `datetime`.
f237c8b6 75
283e68c7
DS
76'verify'::
77
78Read the commit-graph file and verify its contents against the object
79database. Used to check for corrupted data.
3da4b609
DS
80+
81With the `--shallow` option, only check the tip commit-graph file in
82a chain of split commit-graphs.
283e68c7 83
f237c8b6
DS
84
85EXAMPLES
86--------
87
4c399442 88* Write a commit-graph file for the packed commits in your local `.git`
d59a9168 89 directory.
f237c8b6
DS
90+
91------------------------------------------------
92$ git commit-graph write
93------------------------------------------------
94
4893d717
95* Write a commit-graph file, extending the current commit-graph file
96 using commits in `<pack-index>`.
049d51a2
DS
97+
98------------------------------------------------
99$ echo <pack-index> | git commit-graph write --stdin-packs
100------------------------------------------------
101
4893d717 102* Write a commit-graph file containing all reachable commits.
3d5df01b
DS
103+
104------------------------------------------------
105$ git show-ref -s | git commit-graph write --stdin-commits
106------------------------------------------------
107
4893d717 108* Write a commit-graph file containing all commits in the current
d59a9168 109 commit-graph file along with those reachable from `HEAD`.
7547b95b
DS
110+
111------------------------------------------------
112$ git rev-parse HEAD | git commit-graph write --stdin-commits --append
113------------------------------------------------
114
f237c8b6 115
4ce58ee3
DS
116GIT
117---
118Part of the linkgit:git[1] suite