8aad8303f59caf20508d87bbd1a27fa05dbc16cc
   1git-commit-graph(1)
   2===================
   3
   4NAME
   5----
   6git-commit-graph - Write and verify Git commit graph files
   7
   8
   9SYNOPSIS
  10--------
  11[verse]
  12'git commit-graph read' [--object-dir <dir>]
  13'git commit-graph write' <options> [--object-dir <dir>]
  14
  15
  16DESCRIPTION
  17-----------
  18
  19Manage the serialized commit graph file.
  20
  21
  22OPTIONS
  23-------
  24--object-dir::
  25        Use given directory for the location of packfiles and commit graph
  26        file. This parameter exists to specify the location of an alternate
  27        that only has the objects directory, not a full .git directory. The
  28        commit graph file is expected to be at <dir>/info/commit-graph and
  29        the packfiles are expected to be in <dir>/pack.
  30
  31
  32COMMANDS
  33--------
  34'write'::
  35
  36Write a commit graph file based on the commits found in packfiles.
  37Includes all commits from the existing commit graph file.
  38
  39'read'::
  40
  41Read a graph file given by the commit-graph file and output basic
  42details about the graph file. Used for debugging purposes.
  43
  44
  45EXAMPLES
  46--------
  47
  48* Write a commit graph file for the packed commits in your local .git folder.
  49+
  50------------------------------------------------
  51$ git commit-graph write
  52------------------------------------------------
  53
  54* Read basic information from the commit-graph file.
  55+
  56------------------------------------------------
  57$ git commit-graph read
  58------------------------------------------------
  59
  60
  61GIT
  62---
  63Part of the linkgit:git[1] suite