Forrest logo
back to context overview

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 --append
    try on your machine
    explain 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 write
    try on your machine
    explain 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-commits
    try on your machine
    explain this command
back to context overview