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 <martin.agren@gmail.com> Reviewed-by: Derrick Stolee <dstolee@microsoft.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Martin Ågren committed
Sep 27, 2018 at 21:12 UTC
4893d717a4e3bcb15822246d6bb2f294861b1ade
1 file changed
+6
-6
Documentation/git-commit-graph.txt
+6
-6
@@ -54,8 +54,8 @@ existing commit-graph file.
54
55
'read'::
56
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.
59
60
'verify'::
61
@@ -73,20 +73,20 @@ EXAMPLES
73
$ git commit-graph write
74
------------------------------------------------
75
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>`.
78
+
79
------------------------------------------------
80
$ echo <pack-index> | git commit-graph write --stdin-packs
81
------------------------------------------------
82
83
-* Write a graph file containing all reachable commits.
83
+* Write a commit-graph file containing all reachable commits.
84
+
85
------------------------------------------------
86
$ git show-ref -s | git commit-graph write --stdin-commits
87
------------------------------------------------
88
89
-* Write a graph file containing all commits in the current
89
+* Write a commit-graph file containing all commits in the current
90
commit-graph file along with those reachable from `HEAD`.
91
+
92
------------------------------------------------