git-show-merged-branches
List branches merged into the current branch
TLDR
Show merged branches
$ git show-merged-branches
SYNOPSIS
git show-merged-branches
DESCRIPTION
git show-merged-branches lists local branches that have been fully merged into HEAD. Part of git-extras, it runs `git branch --merged` and filters out the current branch and the repository's default branch (e.g. `main`/`master`), leaving only the branches that are genuine candidates for deletion.
INSTALL
sudo apt install git
sudo dnf install git
sudo pacman -S git
sudo apk add git
sudo zypper install git
brew install git
nix profile install nixpkgs#git
CAVEATS
Part of git-extras package; only inspects local branches. See `git-show-unmerged-branches` for the inverse view.
SEE ALSO
git-branch(1), git-delete-merged-branches(1), git-extras(1)
