Skip to content

Commit 4893d71

Browse files
Martin Ågrengitster
authored andcommitted
git-commit-graph.txt: refer to "*commit*-graph file"
This document sometimes refers to the "commit-graph file" as just "the graph file". This saves a couple of words here and there at the risk of confusion. In particular, the documentation for `git commit-graph read` appears to suggest that there are indeed different types of graph files. Let's just write out the full name everywhere. The full name, by the way, is not the dash-less "commit graph file". Use the dashed form. (The next commit will fix the remaining few instances of the "commit graph file" in this document.) Signed-off-by: Martin Ågren <[email protected]> Reviewed-by: Derrick Stolee <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent d59a916 commit 4893d71

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Documentation/git-commit-graph.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ existing commit-graph file.
5454

5555
'read'::
5656

57-
Read a graph file given by the commit-graph file and output basic
58-
details about the graph file. Used for debugging purposes.
57+
Read the commit-graph file and output basic details about it.
58+
Used for debugging purposes.
5959

6060
'verify'::
6161

@@ -73,20 +73,20 @@ EXAMPLES
7373
$ git commit-graph write
7474
------------------------------------------------
7575

76-
* Write a graph file, extending the current graph file using commits
77-
in `<pack-index>`.
76+
* Write a commit-graph file, extending the current commit-graph file
77+
using commits in `<pack-index>`.
7878
+
7979
------------------------------------------------
8080
$ echo <pack-index> | git commit-graph write --stdin-packs
8181
------------------------------------------------
8282

83-
* Write a graph file containing all reachable commits.
83+
* Write a commit-graph file containing all reachable commits.
8484
+
8585
------------------------------------------------
8686
$ git show-ref -s | git commit-graph write --stdin-commits
8787
------------------------------------------------
8888

89-
* Write a graph file containing all commits in the current
89+
* Write a commit-graph file containing all commits in the current
9090
commit-graph file along with those reachable from `HEAD`.
9191
+
9292
------------------------------------------------

0 commit comments

Comments
 (0)