
git-commit-graph
List of commands for git-commit-graph:
-
git-commit-graph:tldr:00a37 git-commit-graph: Write a commit-graph file containing all commits in the current commit-graph file along with those reachable from `HEAD`.$ git rev-parse ${HEAD} | git commit-graph write --stdin-commits --appendtry on your machineexplain this command
-
git-commit-graph:tldr:12395 git-commit-graph: Write a commit-graph file for the packed commits in the repository's local `.git` directory.$ git commit-graph writetry on your machineexplain this command
-
git-commit-graph:tldr:2a5c1 git-commit-graph: Write a commit-graph file containing all reachable commits.$ git show-ref --hash | git commit-graph write --stdin-commitstry on your machineexplain this command