LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

git-show-tree

Display a decorated graph of commits across all branches

TLDR

Show branch tree
$ git show-tree
copy

SYNOPSIS

git show-tree

DESCRIPTION

git show-tree is a git-extras shortcut for `git log --all --graph --decorate --oneline --simplify-by-decoration`. It draws an ASCII commit graph across every branch, showing only the commits that are branch/tag tips or merge points, which makes overall repository topology easy to see at a glance.

INSTALL

sudo apt install git
copy
sudo dnf install git
copy
sudo pacman -S git
copy
sudo apk add git
copy
sudo zypper install git
copy
brew install git
copy
nix profile install nixpkgs#git
copy

CAVEATS

Part of git-extras package. Only shows commits relevant to the graph shape (tips, merges, tags); use `git log --graph` directly if you need every commit.

SEE ALSO

RESOURCES

Copied to clipboard
Kai