summaryrefslogtreecommitdiff
path: root/Documentation/git-commit-graph.txt
diff options
context:
space:
mode:
authorMartin Ågren <martin.agren@gmail.com>2018-09-27 19:12:21 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-09-27 22:29:11 (GMT)
commit4893d717a4e3bcb15822246d6bb2f294861b1ade (patch)
treed2a19bd2b6ed08dad689b8fcf4837d8656f72145 /Documentation/git-commit-graph.txt
parentd59a9168fb65b02d20eda3100a76670417087c96 (diff)
downloadgit-4893d717a4e3bcb15822246d6bb2f294861b1ade.zip
git-4893d717a4e3bcb15822246d6bb2f294861b1ade.tar.gz
git-4893d717a4e3bcb15822246d6bb2f294861b1ade.tar.bz2
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>
Diffstat (limited to 'Documentation/git-commit-graph.txt')
-rw-r--r--Documentation/git-commit-graph.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/Documentation/git-commit-graph.txt b/Documentation/git-commit-graph.txt
index 6ac610f..f33330a 100644
--- a/Documentation/git-commit-graph.txt
+++ b/Documentation/git-commit-graph.txt
@@ -54,8 +54,8 @@ existing commit-graph file.
'read'::
-Read a graph file given by the commit-graph file and output basic
-details about the graph file. Used for debugging purposes.
+Read the commit-graph file and output basic details about it.
+Used for debugging purposes.
'verify'::
@@ -73,20 +73,20 @@ EXAMPLES
$ git commit-graph write
------------------------------------------------
-* Write a graph file, extending the current graph file using commits
- in `<pack-index>`.
+* Write a commit-graph file, extending the current commit-graph file
+ using commits in `<pack-index>`.
+
------------------------------------------------
$ echo <pack-index> | git commit-graph write --stdin-packs
------------------------------------------------
-* Write a graph file containing all reachable commits.
+* Write a commit-graph file containing all reachable commits.
+
------------------------------------------------
$ git show-ref -s | git commit-graph write --stdin-commits
------------------------------------------------
-* Write a graph file containing all commits in the current
+* Write a commit-graph file containing all commits in the current
commit-graph file along with those reachable from `HEAD`.
+
------------------------------------------------