summaryrefslogtreecommitdiff
path: root/Documentation/git-commit-graph.txt
diff options
context:
space:
mode:
authorMartin Ågren <martin.agren@gmail.com>2018-09-27 19:12:20 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-09-27 22:29:11 (GMT)
commitd59a9168fb65b02d20eda3100a76670417087c96 (patch)
treed3ca92f8185a865f91226e89fdfe248b75fff1d6 /Documentation/git-commit-graph.txt
parenta3a3ca002d0942696eaa41625da8746f55fc7abe (diff)
downloadgit-d59a9168fb65b02d20eda3100a76670417087c96.zip
git-d59a9168fb65b02d20eda3100a76670417087c96.tar.gz
git-d59a9168fb65b02d20eda3100a76670417087c96.tar.bz2
git-commit-graph.txt: typeset more in monospace
While we're here, fix an instance of "folder" to be "directory". 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.txt13
1 files changed, 7 insertions, 6 deletions
diff --git a/Documentation/git-commit-graph.txt b/Documentation/git-commit-graph.txt
index f42f2a1..6ac610f 100644
--- a/Documentation/git-commit-graph.txt
+++ b/Documentation/git-commit-graph.txt
@@ -25,9 +25,9 @@ OPTIONS
--object-dir::
Use given directory for the location of packfiles and commit graph
file. This parameter exists to specify the location of an alternate
- that only has the objects directory, not a full .git directory. The
- commit graph file is expected to be at <dir>/info/commit-graph and
- the packfiles are expected to be in <dir>/pack.
+ that only has the objects directory, not a full `.git` directory. The
+ commit graph file is expected to be at `<dir>/info/commit-graph` and
+ the packfiles are expected to be in `<dir>/pack`.
COMMANDS
@@ -66,14 +66,15 @@ database. Used to check for corrupted data.
EXAMPLES
--------
-* Write a commit graph file for the packed commits in your local .git folder.
+* Write a commit graph file for the packed commits in your local `.git`
+ directory.
+
------------------------------------------------
$ git commit-graph write
------------------------------------------------
* Write a graph file, extending the current graph file using commits
- in <pack-index>.
+ in `<pack-index>`.
+
------------------------------------------------
$ echo <pack-index> | git commit-graph write --stdin-packs
@@ -86,7 +87,7 @@ $ git show-ref -s | git commit-graph write --stdin-commits
------------------------------------------------
* Write a graph file containing all commits in the current
- commit-graph file along with those reachable from HEAD.
+ commit-graph file along with those reachable from `HEAD`.
+
------------------------------------------------
$ git rev-parse HEAD | git commit-graph write --stdin-commits --append