Skip to content

Commit 776ba91

Browse files
PhilipOakleyttaylorr
authored andcommitted
doc: use "commit-graph" hyphenation consistently
Note, historical release notes have not been updated. Signed-off-by: Philip Oakley <[email protected]> Signed-off-by: Taylor Blau <[email protected]>
1 parent 63bba4f commit 776ba91

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Documentation/config/core.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,7 @@ but risks losing recent work in the event of an unclean system shutdown.
618618
* `loose-object` hardens objects added to the repo in loose-object form.
619619
* `pack` hardens objects added to the repo in packfile form.
620620
* `pack-metadata` hardens packfile bitmaps and indexes.
621-
* `commit-graph` hardens the commit graph file.
621+
* `commit-graph` hardens the commit-graph file.
622622
* `index` hardens the index when it is modified.
623623
* `objects` is an aggregate option that is equivalent to
624624
`loose-object,pack`.

Documentation/gitformat-commit-graph.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ gitformat-commit-graph(5)
33

44
NAME
55
----
6-
gitformat-commit-graph - Git commit graph format
6+
gitformat-commit-graph - Git commit-graph format
77

88
SYNOPSIS
99
--------
@@ -14,7 +14,7 @@ $GIT_DIR/objects/info/commit-graphs/*
1414
DESCRIPTION
1515
-----------
1616

17-
The Git commit graph stores a list of commit OIDs and some associated
17+
The Git commit-graph stores a list of commit OIDs and some associated
1818
metadata, including:
1919

2020
- The generation number of the commit.
@@ -34,7 +34,7 @@ corresponding to the array position within the list of commit OIDs. Due
3434
to some special constants we use to track parents, we can store at most
3535
(1 << 30) + (1 << 29) + (1 << 28) - 1 (around 1.8 billion) commits.
3636

37-
== Commit graph files have the following format:
37+
== Commit-graph files have the following format:
3838

3939
In order to allow extensions that add extra data to the graph, we organize
4040
the body into "chunks" and provide a binary lookup table at the beginning

Documentation/technical/commit-graph.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Git Commit Graph Design Notes
1+
Git Commit-Graph Design Notes
22
=============================
33

44
Git walks the commit graph for many reasons, including:
@@ -95,7 +95,7 @@ with default order), but is not used when the topological order is
9595
required (such as merge base calculations, "git log --graph").
9696

9797
In practice, we expect some commits to be created recently and not stored
98-
in the commit graph. We can treat these commits as having "infinite"
98+
in the commit-graph. We can treat these commits as having "infinite"
9999
generation number and walk until reaching commits with known generation
100100
number.
101101

@@ -149,7 +149,7 @@ Design Details
149149
helpful for these clones, anyway. The commit-graph will not be read or
150150
written when shallow commits are present.
151151

152-
Commit Graphs Chains
152+
Commit-Graphs Chains
153153
--------------------
154154

155155
Typically, repos grow with near-constant velocity (commits per day). Over time,

0 commit comments

Comments
 (0)